diff options
author | Dmitry Stogov <dmitry@zend.com> | 2017-10-26 13:05:23 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2017-10-26 13:05:23 +0300 |
commit | bc59289b7a25219ea2179554dc26c88e533250a5 (patch) | |
tree | 7e2e3280bc9920649cd0a4f1e2a8efb54c0d719b /Zend/tests/bug75420.phpt | |
parent | eaeccc1d99458f17b535a8fb3ae7479f8d013d7f (diff) | |
download | php-git-bc59289b7a25219ea2179554dc26c88e533250a5.tar.gz |
Fixed indirect modification of magic method arguments.
Diffstat (limited to 'Zend/tests/bug75420.phpt')
-rw-r--r-- | Zend/tests/bug75420.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/bug75420.phpt b/Zend/tests/bug75420.phpt index 969a4a0417..5528ad301b 100644 --- a/Zend/tests/bug75420.phpt +++ b/Zend/tests/bug75420.phpt @@ -13,5 +13,5 @@ $name = "foo"; var_dump($obj->$name ?? 12); ?> --EXPECT-- -int(24) +string(3) "foo" int(42) |