diff options
Diffstat (limited to 'ext/reflection/tests/bug38194.phpt')
-rw-r--r-- | ext/reflection/tests/bug38194.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/tests/bug38194.phpt b/ext/reflection/tests/bug38194.phpt index 1430ba45ae..dfbfb67147 100644 --- a/ext/reflection/tests/bug38194.phpt +++ b/ext/reflection/tests/bug38194.phpt @@ -3,7 +3,7 @@ Reflection Bug #38194 (ReflectionClass::isSubclassOf() returns TRUE for the clas --FILE-- <?php class ObjectOne { } - + $objectClass = new ReflectionClass('ObjectOne'); var_dump($objectClass->isSubclassOf($objectClass)); ?> |