Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- neon:
- -
- implement: App\CallYouFormFactory
- parameters: [%callYouEmail%]
- php:
- class CallYouForm extends Control
- {
- // ...
- public function __construct($callYouEmail, CallYouFacade $callYouFacade, IMailer $mailer)
- {
- $this->callYouFacade = $callYouFacade;
- $this->mailer = $mailer;
- $this->callYouEmail = $callYouEmail;
- }
- // ...
- }
- interface CallYouFormFactory
- {
- /**
- * @return CallYouForm
- */
- public function create();
- }
Advertisement
Add Comment
Please, Sign In to add comment