summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/ReflectionClass_implementsInterface_001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/ReflectionClass_implementsInterface_001.phpt')
-rw-r--r--ext/reflection/tests/ReflectionClass_implementsInterface_001.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/reflection/tests/ReflectionClass_implementsInterface_001.phpt b/ext/reflection/tests/ReflectionClass_implementsInterface_001.phpt
index 9c2fdedddb..91398867ec 100644
--- a/ext/reflection/tests/ReflectionClass_implementsInterface_001.phpt
+++ b/ext/reflection/tests/ReflectionClass_implementsInterface_001.phpt
@@ -12,7 +12,7 @@ class B extends A {}
interface I2 extends I1 {}
class C implements I2 {}
-$classNames = array('A', 'B', 'C', 'I1', 'I2');
+$classNames = array('A', 'B', 'C', 'I1', 'I2');
foreach ($classNames as $className) {
$rcs[$className] = new ReflectionClass($className);
@@ -26,7 +26,7 @@ foreach ($rcs as $childName => $child) {
var_dump($child->implementsInterface($parent));
} catch (Exception $e) {
echo $e->getMessage() . "\n";
- }
+ }
echo " - Using string argument: ";
try {
var_dump($child->implementsInterface($parentName));