1 | <?php |
||
18 | class CreateUser implements CommandInterface |
||
19 | { |
||
20 | /** @var NewCustomer */ |
||
21 | protected $customer; |
||
22 | |||
23 | /** @var string */ |
||
24 | protected $password; |
||
25 | |||
26 | public function __construct(NewCustomer $customer, string $password) |
||
31 | |||
32 | public function customer(): NewCustomer |
||
36 | |||
37 | public function password(): string |
||
41 | } |
||
42 |