summaryrefslogtreecommitdiff
path: root/ext/spl/tests/array_read.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/array_read.phpt')
-rwxr-xr-xext/spl/tests/array_read.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/tests/array_read.phpt b/ext/spl/tests/array_read.phpt
index b1e95fd6a1..032373d52d 100755
--- a/ext/spl/tests/array_read.phpt
+++ b/ext/spl/tests/array_read.phpt
@@ -10,7 +10,7 @@ echo "EXTERNAL\n";
$a = array('1st', 1, 2=>'3rd', '4th'=>4);
var_dump($a);
-class external implements spl::array_read {
+class external implements spl_array_read {
function exists($index) {
echo __METHOD__ . "($index)\n";
@@ -46,7 +46,7 @@ $out = $obj['4th']; echo "$out\n";
echo "INTERNAL\n";
-class internal implements spl::array_read {
+class internal implements spl_array_read {
public $a = array('1st', 1, 2=>'3rd', '4th'=>4);