Total Complexity | 6 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | trait RemoveTraverseTrait |
||
11 | { |
||
12 | 12 | public function remove($element): bool |
|
39 | } |
||
40 | |||
41 | abstract public function getIndexIterator(): Iterator; |
||
42 | |||
43 | abstract public function isEmpty(): bool; |
||
44 | |||
45 | abstract protected function setElements(array $elements): void; |
||
46 | |||
47 | abstract protected function getElements(): array; |
||
48 | } |
||
49 |