1 | <?php |
||
14 | class TestEmailOptions implements TemplateOptionsInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | public $message; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | public $filePath; |
||
25 | |||
26 | /** |
||
27 | * TestArguments constructor. |
||
28 | * |
||
29 | * @param string $message |
||
30 | * @param string $filePath |
||
31 | */ |
||
32 | public function __construct(string $message, string $filePath) |
||
37 | } |
||
38 |