summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFixedArray_toArray_with-params.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/SplFixedArray_toArray_with-params.phpt')
-rw-r--r--ext/spl/tests/SplFixedArray_toArray_with-params.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/spl/tests/SplFixedArray_toArray_with-params.phpt b/ext/spl/tests/SplFixedArray_toArray_with-params.phpt
index 8864362c67..4c72dca235 100644
--- a/ext/spl/tests/SplFixedArray_toArray_with-params.phpt
+++ b/ext/spl/tests/SplFixedArray_toArray_with-params.phpt
@@ -6,12 +6,12 @@ PHPNW Testfest 2009 - Paul Court ( g@rgoyle.com )
<?php
// Create a fixed array
$fixedArray = new SplFixedArray(5);
-
+
// Fill it up
- for ($i=0; $i < 5; $i++) {
+ for ($i=0; $i < 5; $i++) {
$fixedArray[$i] = "PHPNW Testfest";
}
-
+
// Test count() returns correct error when parameters are passed.
$fixedArray->count(1);
?>