Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
35 | 37 | public function chosen() : ?Connection |
|
36 | { |
||
37 | 37 | if ($this->helperSet->has($this->helperName)) { |
|
38 | 13 | $connectionHelper = $this->helperSet->get($this->helperName); |
|
39 | |||
40 | 13 | if ($connectionHelper instanceof ConnectionHelper) { |
|
41 | 13 | return $connectionHelper->getConnection(); |
|
42 | } |
||
43 | } |
||
44 | |||
45 | 24 | return null; |
|
46 | } |
||
48 |