| Total Complexity | 9 |
| Total Lines | 44 |
| Duplicated Lines | 0 % |
| Coverage | 75% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | trait ListOperationsTrait |
||
| 10 | { |
||
| 11 | |||
| 12 | |||
| 13 | |||
| 14 | public function plus(iterable $other): ListInterface |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @inheritDoc |
||
| 23 | */ |
||
| 24 | 3 | public function minus(iterable $values): ListInterface |
|
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @inheritDoc |
||
| 43 | */ |
||
| 44 | 2 | public function intersect(ListInterface $list): ListInterface |
|
| 53 | } |
||
| 54 | } |