summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/floor_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/math/floor_basic.phpt')
-rw-r--r--ext/standard/tests/math/floor_basic.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/tests/math/floor_basic.phpt b/ext/standard/tests/math/floor_basic.phpt
index 034f55f00e..5076292472 100644
--- a/ext/standard/tests/math/floor_basic.phpt
+++ b/ext/standard/tests/math/floor_basic.phpt
@@ -30,12 +30,12 @@ $values = array(0,
true,
false,
null,
- );
-
+ );
+
foreach($values as $value) {
echo "\n-- floor $value --\n";
var_dump(floor($value));
-};
+};
?>
===Done===