1 | <?php |
||
35 | class TDBMObject extends AbstractTDBMObject implements \ArrayAccess, \Iterator |
||
36 | { |
||
37 | |||
38 | public function __get($var) |
||
42 | |||
43 | /** |
||
44 | * Returns true if a column is set, false otherwise. |
||
45 | * |
||
46 | * @param string $var |
||
47 | * @return boolean |
||
48 | */ |
||
49 | public function __isset($var) |
||
53 | |||
54 | public function __set($var, $value) |
||
58 | |||
59 | /** |
||
60 | * Implements array behaviour for our object. |
||
61 | * |
||
62 | * @param string $offset |
||
63 | * @param string $value |
||
64 | */ |
||
65 | public function offsetSet($offset, $value) |
||
69 | |||
70 | /** |
||
71 | * Implements array behaviour for our object. |
||
72 | * |
||
73 | * @param string $offset |
||
74 | * @return bool |
||
75 | */ |
||
76 | public function offsetExists($offset) |
||
81 | |||
82 | /** |
||
83 | * Implements array behaviour for our object. |
||
84 | * |
||
85 | * @param string $offset |
||
86 | */ |
||
87 | public function offsetUnset($offset) |
||
91 | |||
92 | /** |
||
93 | * Implements array behaviour for our object. |
||
94 | * |
||
95 | * @param string $offset |
||
96 | * @return mixed|null |
||
97 | */ |
||
98 | public function offsetGet($offset) |
||
102 | |||
103 | private $_validIterator = false; |
||
104 | |||
105 | /** |
||
106 | * Implements iterator behaviour for our object (so we can each column). |
||
107 | */ |
||
108 | public function rewind() |
||
118 | |||
119 | /** |
||
120 | * Implements iterator behaviour for our object (so we can each column). |
||
121 | */ |
||
122 | public function next() |
||
127 | |||
128 | /** |
||
129 | * Implements iterator behaviour for our object (so we can each column). |
||
130 | */ |
||
131 | public function key() |
||
135 | |||
136 | /** |
||
137 | * Implements iterator behaviour for our object (so we can each column). |
||
138 | */ |
||
139 | public function current() |
||
143 | |||
144 | /** |
||
145 | * Implements iterator behaviour for our object (so we can each column). |
||
146 | */ |
||
147 | public function valid() |
||
151 | } |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.