Total Complexity | 5 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 84.62% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class ArrayToExpectationConverterLocator |
||
9 | { |
||
10 | /** @var FactoryV1 */ |
||
11 | private $factoryV1; |
||
12 | |||
13 | /** @var FactoryV2 */ |
||
14 | private $factoryV2; |
||
15 | |||
16 | 24 | public function __construct(FactoryV1 $factoryV1, FactoryV2 $factoryV2) |
|
20 | 24 | } |
|
21 | |||
22 | 24 | public function locate(array $expectationArray): ArrayToExpectationConverter |
|
37 |