HosipLan

Untitled

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