summaryrefslogtreecommitdiff
path: root/tests/classes/interface_constant_inheritance_005.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/classes/interface_constant_inheritance_005.phpt')
-rw-r--r--tests/classes/interface_constant_inheritance_005.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/classes/interface_constant_inheritance_005.phpt b/tests/classes/interface_constant_inheritance_005.phpt
index 1abb85751e..3d728ae46a 100644
--- a/tests/classes/interface_constant_inheritance_005.phpt
+++ b/tests/classes/interface_constant_inheritance_005.phpt
@@ -3,7 +3,7 @@ Ensure a interface can have public constants
--FILE--
<?php
interface IA {
- public const FOO = 10;
+ public const FOO = 10;
}
echo "Done\n";