diff options
Diffstat (limited to 'ext/standard/tests/class_object/AutoTest.inc')
-rw-r--r-- | ext/standard/tests/class_object/AutoTest.inc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ext/standard/tests/class_object/AutoTest.inc b/ext/standard/tests/class_object/AutoTest.inc new file mode 100644 index 0000000..0627096 --- /dev/null +++ b/ext/standard/tests/class_object/AutoTest.inc @@ -0,0 +1,13 @@ +<?php + +class autoTest { + public static $bob = "bob"; + + public function __get($name) { + echo "attempt to access $name\n"; + return "foo"; + } + +} + +?>
\ No newline at end of file |