diff options
Diffstat (limited to 'ext/spl/tests/bug37457.phpt')
-rw-r--r-- | ext/spl/tests/bug37457.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/tests/bug37457.phpt b/ext/spl/tests/bug37457.phpt index 188d2fba81..4c92bbc357 100644 --- a/ext/spl/tests/bug37457.phpt +++ b/ext/spl/tests/bug37457.phpt @@ -6,13 +6,13 @@ Bug #37457 (Crash when an exception is thrown in accept() method of FilterIterat class Collection implements Iterator { protected $array, $valid = false; - + public function __construct(array $a) { echo __METHOD__ . "\n"; $this->array = $a; } - + public function current() { echo __METHOD__ . "\n"; |