Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
30 | 2 | public function preCheck(Client $esClient, array $params) |
|
31 | { |
||
32 | 2 | $indices = implode(',', [ |
|
33 | 2 | array_get($params, 'body.source.index'), |
|
34 | 2 | array_get($params, 'body.dest.index') |
|
35 | ]); |
||
36 | |||
37 | 2 | if (!$esClient->indices()->exists(['index' => $indices])) { |
|
38 | 1 | throw new \Exception(sprintf("Index not exist: %s", $indices)); |
|
39 | } |
||
66 |