diff options
Diffstat (limited to 'ext/spl/tests/SplFixedArray_construct_param_SplFixedArray.phpt')
-rw-r--r-- | ext/spl/tests/SplFixedArray_construct_param_SplFixedArray.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/tests/SplFixedArray_construct_param_SplFixedArray.phpt b/ext/spl/tests/SplFixedArray_construct_param_SplFixedArray.phpt index af9f5f3ee8..efb1d0e65d 100644 --- a/ext/spl/tests/SplFixedArray_construct_param_SplFixedArray.phpt +++ b/ext/spl/tests/SplFixedArray_construct_param_SplFixedArray.phpt @@ -5,9 +5,9 @@ Philip Norton philipnorton42@gmail.com --FILE-- <?php try { - $array = new SplFixedArray(new SplFixedArray(3)); + $array = new SplFixedArray(new SplFixedArray(3)); } catch (TypeError $iae) { - echo "Ok - ".$iae->getMessage().PHP_EOL; + echo "Ok - ".$iae->getMessage().PHP_EOL; } ?> |