summaryrefslogtreecommitdiff
path: root/Zend/tests/bug65911.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug65911.phpt')
-rw-r--r--Zend/tests/bug65911.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/Zend/tests/bug65911.phpt b/Zend/tests/bug65911.phpt
index 753c8c6c7d..b9d973eb45 100644
--- a/Zend/tests/bug65911.phpt
+++ b/Zend/tests/bug65911.phpt
@@ -6,11 +6,11 @@ class A {}
class B
{
- public function go()
- {
- $this->foo = 'bar';
- echo A::$this->foo; // should not output 'bar'
- }
+ public function go()
+ {
+ $this->foo = 'bar';
+ echo A::$this->foo; // should not output 'bar'
+ }
}
$obj = new B();