diff options
Diffstat (limited to 'Zend/tests/bug72594.phpt')
-rw-r--r-- | Zend/tests/bug72594.phpt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Zend/tests/bug72594.phpt b/Zend/tests/bug72594.phpt index c67e68e4ac..5ffbe1ef34 100644 --- a/Zend/tests/bug72594.phpt +++ b/Zend/tests/bug72594.phpt @@ -5,12 +5,12 @@ opcache.enable=0 --FILE-- <?php if (isset($runtime)) { - return new class { - public $bar; - public function bing($foo = null) { - if ($foo) $foo->bing(); - } - }; + return new class { + public $bar; + public function bing($foo = null) { + if ($foo) $foo->bing(); + } + }; } $runtime = 1; |