| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class ObjectComparatorBasedCollectionComparator extends AbstractCollectionComparator implements CollectionComparatorInterface |
||
| 11 | { |
||
| 12 | use UsesObjectComparatorTrait; |
||
| 13 | |||
| 14 | protected ObjectComparatorInterface $comparator; |
||
| 15 | |||
| 16 | public function __construct(ObjectComparatorInterface $comparator) |
||
| 17 | { |
||
| 18 | $this->comparator = $comparator; |
||
| 19 | } |
||
| 20 | |||
| 21 | protected function getObjectComparator(): ObjectComparatorInterface |
||
| 24 | } |
||
| 25 | } |
||
| 26 |