summaryrefslogtreecommitdiff
path: root/tests/classes/interface_constant_inheritance_003.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/classes/interface_constant_inheritance_003.phpt')
-rw-r--r--tests/classes/interface_constant_inheritance_003.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/classes/interface_constant_inheritance_003.phpt b/tests/classes/interface_constant_inheritance_003.phpt
index b4902f7306..de867f5dfc 100644
--- a/tests/classes/interface_constant_inheritance_003.phpt
+++ b/tests/classes/interface_constant_inheritance_003.phpt
@@ -3,11 +3,11 @@ Ensure a class may not inherit two constants with the same name from two separat
--FILE--
<?php
interface I1 {
- const FOO = 10;
+ const FOO = 10;
}
interface I2 {
- const FOO = 10;
+ const FOO = 10;
}
class C implements I1,I2 {