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.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/reflection/tests/bug38194.phpt b/ext/reflection/tests/bug38194.phpt
index d12f4e4a77..1430ba45ae 100644
--- a/ext/reflection/tests/bug38194.phpt
+++ b/ext/reflection/tests/bug38194.phpt
@@ -2,9 +2,9 @@
Reflection Bug #38194 (ReflectionClass::isSubclassOf() returns TRUE for the class itself)
--FILE--
<?php
-class Object { }
+class ObjectOne { }
-$objectClass= new ReflectionClass('Object');
+$objectClass = new ReflectionClass('ObjectOne');
var_dump($objectClass->isSubclassOf($objectClass));
?>
--EXPECT--