Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // src/AppBundle/Newsletter/NewsletterManager.php
- namespace AppBundle\Newsletter;
- use AppBundle\Mailer;
- class NewsletterManager
- {
- protected $mailer;
- public function __construct(Mailer $mailer)
- {
- $this->mailer = $mailer;
- }
- // ...
- }
Add Comment
Please, Sign In to add comment