summaryrefslogtreecommitdiff
path: root/Zend/tests/bug52484_2.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug52484_2.phpt')
-rw-r--r--Zend/tests/bug52484_2.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/bug52484_2.phpt b/Zend/tests/bug52484_2.phpt
index 3b12950c66..698f2d94b5 100644
--- a/Zend/tests/bug52484_2.phpt
+++ b/Zend/tests/bug52484_2.phpt
@@ -4,9 +4,9 @@ Bug #52484.2 (__set() ignores setting properties with empty names)
<?php
class A {
- function __set($prop, $val) {
- $this->$prop = $val;
- }
+ function __set($prop, $val) {
+ $this->$prop = $val;
+ }
}
$a = new A();