Total Complexity | 4 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 90.91% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class ExpectationToArrayConverterLocator |
||
10 | { |
||
11 | /** @var FactoryV1 */ |
||
12 | private $factoryV1; |
||
13 | |||
14 | /** @var FactoryV2 */ |
||
15 | private $factoryV2; |
||
16 | |||
17 | 24 | public function __construct(FactoryV1 $factoryV1, FactoryV2 $factoryV2) |
|
21 | 24 | } |
|
22 | |||
23 | 24 | public function locate(Expectation $expectation): ExpectationToArrayConverter |
|
34 |