Skip to content

Commit 29e9e74

Browse files
committed
Email Builder
1 parent 8241372 commit 29e9e74

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

component/Port/EmailBuilder.php

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace Phant\EmailSender\Port;
6+
7+
interface EmailBuilder
8+
{
9+
public function getText(mixed $datas): string;
10+
11+
public function getHtml(mixed $datas): string;
12+
}

0 commit comments

Comments
 (0)