| 1 | <?php |
||
| 13 | class Mailer |
||
| 14 | { |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var ServiceAdapterInterface |
||
| 18 | */ |
||
| 19 | protected $serviceAdapter; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Mailer constructor. |
||
| 23 | * |
||
| 24 | * @param ServiceAdapterInterface $serviceAdapter |
||
| 25 | */ |
||
| 26 | 1 | public function __construct(ServiceAdapterInterface $serviceAdapter) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * Send email |
||
| 33 | * |
||
| 34 | * @param Email $email |
||
| 35 | */ |
||
| 36 | public function send(Email $email) |
||
| 40 | } |
||
| 41 |