You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deprecated: Creation of dynamic property MyClass::$foo2 is deprecated in /usr/local/tyson/php-src/test.php on line 6
\MyClass::__set_state(array(
'foo' => 'bar',
'foo2' => 2,
))
\ReadOnly_::__set_state(array(
'foo' => 'bar',
))
But I expected this output instead:
Deprecated: Creation of dynamic property MyClass::$foo is deprecated in ...
Deprecated: Creation of dynamic property MyClass::$foo2 is deprecated in ... on line 6
\MyClass::__set_state(array(
'foo' => 'bar',
'foo2' => 2,
))
Uncaught Error: Cannot create dynamic property ReadOnly_::$foo in ...