| 1 | <?php | ||
| 5 | class EmailNotification | ||
| 6 | { | ||
| 7 | /** | ||
| 8 | * @var \Swift_Mailer | ||
| 9 | */ | ||
| 10 | private $mailer; | ||
| 11 | /** | ||
| 12 | * @var \Twig_Environment | ||
| 13 | */ | ||
| 14 | private $twig; | ||
| 15 | |||
| 16 | private $from; | ||
| 17 | |||
| 18 | public function __construct(\Swift_Mailer $mailer, \Twig_Environment $twig, $from) | ||
| 24 | |||
| 25 | public function sendNotification($email) | ||
| 36 | } | ||
| 37 |