1 | <?php |
||
10 | class HubicController extends ActionController |
||
11 | { |
||
12 | /** |
||
13 | * @var \Filoucrackeur\Hubic\Service\HubicService |
||
14 | */ |
||
15 | protected $hubicService; |
||
16 | |||
17 | /** |
||
18 | * @var \Filoucrackeur\Hubic\Domain\Repository\AccountRepository |
||
19 | */ |
||
20 | protected $accountRepository; |
||
21 | |||
22 | 1 | public function listAction() |
|
35 | |||
36 | /** |
||
37 | * @param AccountRepository $accountRepository |
||
38 | */ |
||
39 | 1 | public function injectAccountRepository(AccountRepository $accountRepository) |
|
43 | |||
44 | /** |
||
45 | * @param HubicService $hubicService |
||
46 | */ |
||
47 | 1 | public function injectHubicService(HubicService $hubicService) |
|
51 | } |
||
52 |