diff options
Diffstat (limited to 'tests/reflection/003.phpt')
| -rwxr-xr-x | tests/reflection/003.phpt | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/reflection/003.phpt b/tests/reflection/003.phpt deleted file mode 100755 index 660389255..000000000 --- a/tests/reflection/003.phpt +++ /dev/null @@ -1,31 +0,0 @@ ---TEST-- -invoke() with base class method ---FILE-- -<?php - -class Foo -{ - function Test() - { - echo __METHOD__ . "\n"; - } -} - -class Bar extends Foo -{ - function Test() - { - echo __METHOD__ . "\n"; - } -} - -$o = new Bar; -$r = new ReflectionMethod('Foo','Test'); - -$r->invoke($o); - -?> -===DONE=== ---EXPECT-- -Foo::Test -===DONE=== |
