diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-02-03 22:52:20 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-02-03 22:52:20 +0100 |
commit | f8d795820e780a6322e054c26c581570613c14f0 (patch) | |
tree | 99d3ae01ce564752807341c5743863b4c92513f8 /Zend/tests/bug52879.phpt | |
parent | d2cb200e10ada6fa44c54a29292bb4665728fff0 (diff) | |
download | php-git-f8d795820e780a6322e054c26c581570613c14f0.tar.gz |
Reindent phpt files
Diffstat (limited to 'Zend/tests/bug52879.phpt')
-rw-r--r-- | Zend/tests/bug52879.phpt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/tests/bug52879.phpt b/Zend/tests/bug52879.phpt index 6c3232f32d..09369d2d2f 100644 --- a/Zend/tests/bug52879.phpt +++ b/Zend/tests/bug52879.phpt @@ -3,10 +3,10 @@ Bug #52879 (Objects unreferenced in __get, __set, __isset or __unset can be free --FILE-- <?php class MyClass { - public $myRef; - public function __set($property,$value) { - $this->myRef = $value; - } + public $myRef; + public function __set($property,$value) { + $this->myRef = $value; + } } $myGlobal=new MyClass(); $myGlobal->myRef=&$myGlobal; |