| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 47 | private function createConfigurator($fqcn, Criteria $criteria, $data) |
||
| 48 | { |
||
| 49 | $mock = self::prophesize(CriteriaConfiguratorInterface::class); |
||
| 50 | $mock->configure(Argument::exact($fqcn), Argument::exact($criteria), Argument::exact($data)) |
||
| 51 | ->shouldBeCalled(); |
||
| 52 | |||
| 53 | return $mock->reveal(); |
||
| 54 | } |
||
| 55 | } |
||
| 56 |