View difference between Paste ID: 8TrD491Z and X1G0BXm0
SHOW: | | - or go back to the newest paste.
1
neon:
2
	-
3
		class App\CallYouForm(%callYouEmail%)
4-
		parameters: [%callYouEmail%]
4+
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-
	public function create();
32+
33
	public function create($email);
34
35
}