1 | <?php |
||
20 | class CreateClient |
||
21 | { |
||
22 | private $clientId; |
||
23 | private $ownerId; |
||
24 | private $parameter; |
||
25 | |||
26 | public function __construct(ClientId $clientId, UserAccountId $ownerId, DataBag $parameter) |
||
32 | |||
33 | public function getClientId(): ClientId |
||
37 | |||
38 | public function getOwnerId(): UserAccountId |
||
42 | |||
43 | public function getParameter(): DataBag |
||
47 | } |
||
48 |