resurtm

Untitled

Dec 30th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. // src/AppBundle/Newsletter/NewsletterManager.php
  2. namespace AppBundle\Newsletter;
  3.  
  4. use AppBundle\Mailer;
  5.  
  6. class NewsletterManager
  7. {
  8.     protected $mailer;
  9.  
  10.     public function __construct(Mailer $mailer)
  11.     {
  12.         $this->mailer = $mailer;
  13.     }
  14.  
  15.     // ...
  16. }
Add Comment
Please, Sign In to add comment