Total Complexity | 5 |
Total Lines | 29 |
Duplicated Lines | 0 % |
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 | public function __construct(FactoryV1 $factoryV1, FactoryV2 $factoryV2) |
||
17 | { |
||
18 | $this->factoryV1 = $factoryV1; |
||
19 | $this->factoryV2 = $factoryV2; |
||
20 | } |
||
21 | |||
22 | public function locate(array $expectationArray): ArrayToExpectationConverter |
||
37 | } |
||
38 | } |
||
39 |