1 | <?php |
||
16 | class ResultCollection extends AbstractCollection implements ResultCollectionInterface |
||
17 | { |
||
18 | /** |
||
19 | * @inheritDoc |
||
20 | */ |
||
21 | 1 | public function addItem($item) |
|
25 | |||
26 | /** |
||
27 | * @inheritDoc |
||
28 | */ |
||
29 | 3 | public function addNamedItem($name, $item) |
|
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | 10 | public function getResults() |
|
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | 5 | public function jsonSerialize() |
|
49 | |||
50 | /** |
||
51 | * @inheritDoc |
||
52 | */ |
||
53 | 10 | protected function isItemValid($item) |
|
57 | } |
||
58 |