Lines Matching refs:x

35         function __get($x) { return [0]; }
36 function __set($x, $y) {}
46 function &__get($x) { return $this->bar; }
55 function offsetGet($x): mixed { return [0]; }
56 function offsetSet($x, $y): void {}
57 function offsetExists($x): bool { return true; }
58 function offsetUnset($x): void {}
68 function &offsetGet($x): bool { return $this->foo; }
69 function offsetSet($x, $y): void {}
70 function offsetExists($x): bool { return true; }
71 function offsetUnset($x): void {}
88 function __get($x) { return new stdClass; }
89 function __set($x, $y) {}
98 function &__get($x) { return $this->bar; }
112 function __get($x) { return new stdClass; }
113 function __set($x, $y) {}
122 function &__get($x) { return $this->bar; }
129 function offsetGet($x): mixed { return [new stdClass]; }
130 function offsetSet($x, $y): void {}
131 function offsetExists($x): bool { return true; }
132 function offsetUnset($x): void {}
139 function offsetGet($x): mixed { return [new stdClass]; }
140 function offsetSet($x, $y): void {}
141 function offsetExists($x): bool { return true; }
142 function offsetUnset($x): void {}
157 function __get($x) { return new stdClass; }
158 function __set($x, $y) {}
165 function offsetGet($x): mixed { return [new stdClass]; }
166 function offsetSet($x, $y): void {}
167 function offsetExists($x): bool { return true; }
168 function offsetUnset($x): void {}
183 function __get($x) { return new stdClass; }
184 function __set($x, $y) {}
191 function offsetGet($x): mixed { return [new stdClass]; }
192 function offsetSet($x, $y): void {}
193 function offsetExists($x): bool { return true; }
194 function offsetUnset($x): void {}
222 function __get($x) {}
223 function __set($x, $y) { throw new Exception; }
230 function offsetGet($x): mixed {}
231 function offsetSet($x, $y): void { throw new Exception; }
232 function offsetExists($x): bool { return true; }
233 function offsetUnset($x): void {}
268 function __toString() { $x = "Z"; return ++$x; }