summaryrefslogtreecommitdiff
path: root/Zend/tests/030.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/030.phpt')
-rw-r--r--Zend/tests/030.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/tests/030.phpt b/Zend/tests/030.phpt
index 2318420319..6f3bda27d7 100644
--- a/Zend/tests/030.phpt
+++ b/Zend/tests/030.phpt
@@ -7,7 +7,7 @@ class foo {
public $test = 0;
private $test_2 = 1;
protected $test_3 = 2;
-
+
public function bar() {
try {
throw new Exception('foo');
@@ -15,13 +15,13 @@ class foo {
var_dump($this);
}
- $this->baz();
+ $this->baz();
}
-
+
public function baz() {
foreach ($this as $k => $v) {
printf("'%s' => '%s'\n", $k, $v);
- }
+ }
print "ok\n";
}
}