Lines Matching refs:name
8 public function offsetExists($name): bool {
9 echo "offsetExists($name)\n";
10 return parent::offsetExists($name);
12 public function offsetGet($name): mixed {
13 echo "offsetGet($name)\n";
14 return parent::offsetGet($name);
16 public function offsetSet($name, $value): void {
17 echo "offsetSet($name)\n";
18 parent::offsetSet($name, $value);
20 public function offsetUnset($name): void {
21 echo "offsetUnset($name)\n";
22 parent::offsetUnset($name);