1 | <?php |
||
19 | class ArrayObject extends AbstractObject implements IteratorAggregate |
||
20 | { |
||
21 | /** |
||
22 | * @var ObjectInterface[] |
||
23 | */ |
||
24 | private $items; |
||
25 | |||
26 | /** |
||
27 | * @param ObjectInterface[] $items |
||
28 | */ |
||
29 | public function __construct(array $items = []) |
||
35 | |||
36 | /** |
||
37 | * @param ObjectInterface $object |
||
38 | */ |
||
39 | public function append(ObjectInterface $object) |
||
43 | |||
44 | /** |
||
45 | * @param int $index |
||
46 | * @return ObjectInterface |
||
47 | */ |
||
48 | public function get($index) |
||
59 | |||
60 | /** |
||
61 | * {@inheritdoc} |
||
62 | */ |
||
63 | public function writeToStream(SplFileObject $fileObject, $encryptionKey) |
||
74 | |||
75 | /** |
||
76 | * {@inheritdoc} |
||
77 | */ |
||
78 | public function getIterator() |
||
84 | } |
||
85 |
This check looks for function calls that miss required arguments.