1 | <?php |
||
20 | class DictionaryObject extends AbstractObject implements ArrayAccess, IteratorAggregate |
||
21 | { |
||
22 | /** |
||
23 | * @var ObjectInterface[] |
||
24 | */ |
||
25 | private $items; |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function writeToStream(SplFileObject $fileObject, $encryptionKey) |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function offsetExists($offset) |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | public function offsetGet($offset) |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | public function offsetSet($offset, $value) |
||
73 | |||
74 | /** |
||
75 | * {@inheritdoc} |
||
76 | */ |
||
77 | public function offsetUnset($offset) |
||
81 | |||
82 | /** |
||
83 | * {@inheritdoc} |
||
84 | */ |
||
85 | public function getIterator() |
||
91 | } |
||
92 |
This check looks for function calls that miss required arguments.