summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug64264.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/bug64264.phpt')
-rw-r--r--ext/spl/tests/bug64264.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/spl/tests/bug64264.phpt b/ext/spl/tests/bug64264.phpt
index e7b695bd82..90b3af84aa 100644
--- a/ext/spl/tests/bug64264.phpt
+++ b/ext/spl/tests/bug64264.phpt
@@ -2,12 +2,12 @@
Bug #64264 (SPLFixedArray toArray problem)
--FILE--
<?php
-class MyFixedArray extends \SplFixedArray {
- protected $foo;
- protected $bar;
-}
+class MyFixedArray extends \SplFixedArray {
+ protected $foo;
+ protected $bar;
+}
-$myFixedArr = new MyFixedArray(1);
+$myFixedArr = new MyFixedArray(1);
$myFixedArr[0] = 'foo';
$myFixedArr->setSize(2);
$myFixedArr[1] = 'bar';