summaryrefslogtreecommitdiff
path: root/ext/spl/tests/fixedarray_005.phpt
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-02-03 22:52:20 +0100
committerNikita Popov <nikita.ppv@gmail.com>2020-02-03 22:52:20 +0100
commitf8d795820e780a6322e054c26c581570613c14f0 (patch)
tree99d3ae01ce564752807341c5743863b4c92513f8 /ext/spl/tests/fixedarray_005.phpt
parentd2cb200e10ada6fa44c54a29292bb4665728fff0 (diff)
downloadphp-git-f8d795820e780a6322e054c26c581570613c14f0.tar.gz
Reindent phpt files
Diffstat (limited to 'ext/spl/tests/fixedarray_005.phpt')
-rw-r--r--ext/spl/tests/fixedarray_005.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/spl/tests/fixedarray_005.phpt b/ext/spl/tests/fixedarray_005.phpt
index 274fc34245..7295a317ab 100644
--- a/ext/spl/tests/fixedarray_005.phpt
+++ b/ext/spl/tests/fixedarray_005.phpt
@@ -4,21 +4,21 @@ SPL: FixedArray: Invalid arguments
<?php
try {
- $a = new SplFixedArray(new stdClass);
+ $a = new SplFixedArray(new stdClass);
} catch (TypeError $iae) {
- echo "Ok - ".$iae->getMessage().PHP_EOL;
+ echo "Ok - ".$iae->getMessage().PHP_EOL;
}
try {
- $a = new SplFixedArray('FOO');
+ $a = new SplFixedArray('FOO');
} catch (TypeError $iae) {
- echo "Ok - ".$iae->getMessage().PHP_EOL;
+ echo "Ok - ".$iae->getMessage().PHP_EOL;
}
try {
- $a = new SplFixedArray('');
+ $a = new SplFixedArray('');
} catch (TypeError $iae) {
- echo "Ok - ".$iae->getMessage().PHP_EOL;
+ echo "Ok - ".$iae->getMessage().PHP_EOL;
}
?>