1 | <?php |
||
11 | class ClientService |
||
12 | { |
||
13 | /** |
||
14 | * @var ClientRepository |
||
15 | */ |
||
16 | private $clientRepository; |
||
17 | |||
18 | /** |
||
19 | * ClientService constructor. |
||
20 | * @param ClientRepository $clientRepository |
||
21 | */ |
||
22 | public function __construct(ClientRepository $clientRepository) |
||
26 | |||
27 | /** |
||
28 | * @return ClientRepository |
||
29 | */ |
||
30 | public function getClientRepository(): ClientRepository |
||
34 | } |