diff options
Diffstat (limited to 'ext/spl/tests/SplObjectStorage_removeAllExcept_basic.phpt')
-rw-r--r-- | ext/spl/tests/SplObjectStorage_removeAllExcept_basic.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/spl/tests/SplObjectStorage_removeAllExcept_basic.phpt b/ext/spl/tests/SplObjectStorage_removeAllExcept_basic.phpt index 7c8cb7574c..d28e190de7 100644 --- a/ext/spl/tests/SplObjectStorage_removeAllExcept_basic.phpt +++ b/ext/spl/tests/SplObjectStorage_removeAllExcept_basic.phpt @@ -5,9 +5,9 @@ Matthew Turland (me@matthewturland.com) --FILE-- <?php - $a = (object) 'a'; - $b = (object) 'b'; - $c = (object) 'c'; + $a = (object) 'a'; + $b = (object) 'b'; + $c = (object) 'c'; $foo = new SplObjectStorage; $foo->attach($a); |