summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug42703.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/bug42703.phpt')
-rw-r--r--ext/spl/tests/bug42703.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/spl/tests/bug42703.phpt b/ext/spl/tests/bug42703.phpt
index 4b3e4675cc..ab4ee5ed50 100644
--- a/ext/spl/tests/bug42703.phpt
+++ b/ext/spl/tests/bug42703.phpt
@@ -5,18 +5,18 @@ Bug #42703 (Exception raised in an iterator::current() causes segfault in Filter
class BlaIterator implements Iterator
{
public function rewind() { }
-
+
public function next() { }
-
+
public function valid() {
return true;
}
-
+
public function current()
{
throw new Exception('boo');
}
-
+
public function key() { }
}