summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug38194.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/bug38194.phpt')
-rw-r--r--ext/reflection/tests/bug38194.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/tests/bug38194.phpt b/ext/reflection/tests/bug38194.phpt
index d12f4e4a77..145fd99d99 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 Object { }
-
+
$objectClass= new ReflectionClass('Object');
var_dump($objectClass->isSubclassOf($objectClass));
?>