1 | <?php |
||
13 | class CreateIndexHandler |
||
14 | { |
||
15 | /** |
||
16 | * @var ClientRepository |
||
17 | */ |
||
18 | private $clientRepository; |
||
19 | |||
20 | /** |
||
21 | * @var IndexConfigurationRepository |
||
22 | */ |
||
23 | private $configurationRepository; |
||
24 | |||
25 | /** |
||
26 | * @param ClientRepository $clientRepository |
||
27 | * @param IndexConfigurationRepository $configurationRepository |
||
28 | */ |
||
29 | public function __construct( |
||
36 | |||
37 | /** |
||
38 | * Handle index creation command |
||
39 | * |
||
40 | * @param string $clientId |
||
41 | * @param string $indexId |
||
42 | */ |
||
43 | 1 | public function handle($clientId, $indexId) |
|
60 | } |