| Total Complexity | 5 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Coverage | 91.67% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class ConnectionHelperLoader implements ConnectionLoaderInterface |
||
| 13 | { |
||
| 14 | /** @var string */ |
||
| 15 | private $helperName; |
||
| 16 | |||
| 17 | /** @var HelperSet */ |
||
| 18 | private $helperSet; |
||
| 19 | |||
| 20 | 38 | public function __construct(?HelperSet $helperSet = null, string $helperName) |
|
| 29 | 38 | } |
|
| 30 | |||
| 31 | /** |
||
| 32 | * Read the input and return a Configuration, returns null if the config |
||
| 33 | * is not supported. |
||
| 34 | */ |
||
| 35 | 37 | public function chosen() : ?Connection |
|
| 48 |