Total Complexity | 9 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | trait ListOperationsTrait |
||
21 | { |
||
22 | /** |
||
23 | * @inheritDoc |
||
24 | */ |
||
25 | 2 | public function plus(iterable $other): ListInterface |
|
30 | } |
||
31 | |||
32 | /** |
||
33 | * @inheritDoc |
||
34 | */ |
||
35 | 4 | public function minus(iterable $values): ListInterface |
|
50 | } |
||
51 | |||
52 | /** |
||
53 | * @inheritDoc |
||
54 | */ |
||
55 | 2 | public function intersect(ListInterface $list): ListInterface |
|
66 |