Conditions | 5 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 5.0729 |
Changes | 0 |
1 | <?php |
||
11 | 6 | protected function connectionHasArangodbDriver(?string $name): bool |
|
12 | { |
||
13 | 6 | if ($name == '' && ! $this->arangodbIsDefaultConnection()) { |
|
14 | return false; |
||
15 | } |
||
16 | 6 | if ($name == '' && $this->arangodbIsDefaultConnection()) { |
|
17 | 3 | return true; |
|
18 | } |
||
19 | |||
20 | 3 | $connections = config('database.connections'); |
|
21 | |||
22 | 3 | return $connections[$name]['driver'] === 'arangodb'; |
|
23 | } |
||
38 |