Guest User

Untitled

a guest
Aug 12th, 2014
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. neon:
  2. -
  3. implement: App\CallYouFormFactory
  4. parameters: [%callYouEmail%]
  5.  
  6. php:
  7.  
  8. class CallYouForm extends Control
  9. {
  10.  
  11. // ...
  12.  
  13. public function __construct($callYouEmail, CallYouFacade $callYouFacade, IMailer $mailer)
  14. {
  15. $this->callYouFacade = $callYouFacade;
  16. $this->mailer = $mailer;
  17. $this->callYouEmail = $callYouEmail;
  18. }
  19.  
  20. // ...
  21.  
  22. }
  23.  
  24.  
  25.  
  26. interface CallYouFormFactory
  27. {
  28.  
  29. /**
  30. * @return CallYouForm
  31. */
  32. public function create();
  33.  
  34. }
Advertisement
Add Comment
Please, Sign In to add comment