Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 8.1k
Zend: Deprecate __wakeup()#19435
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Zend: Deprecate __wakeup() #19435
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| --TEST-- | ||
| __wakeup() deprecation promoted to exception | ||
| --FILE-- | ||
| <?php | ||
| set_error_handler(function ($errno, $errstr, $errfile, $errline) { | ||
| throw new ErrorException($errstr); | ||
| }); | ||
| try { | ||
| eval(<<<'CODE' | ||
| class Test { | ||
| public function __wakeup() { | ||
| return; | ||
| } | ||
| } | ||
| CODE); | ||
| } catch (Throwable $e) { | ||
| echo $e::class, ': ', $e->getMessage(), PHP_EOL; | ||
| } | ||
| ?> | ||
| --EXPECT-- | ||
| ErrorException: The __wakeup() serialization magic method has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| <?php | ||
| class Test { | ||
| public function __wakeup() { | ||
| return; | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| --TEST-- | ||
| __wakeup() deprecation promoted to exception | ||
| --FILE-- | ||
| <?php | ||
| set_error_handler(function ($errno, $errstr, $errfile, $errline) { | ||
| throw new ErrorException($errstr); | ||
| }); | ||
| try { | ||
| require __DIR__ . '/wakeup_deprecation_promoted_exception2.inc'; | ||
| } catch (Throwable $e) { | ||
| echo $e::class, ': ', $e->getMessage(), PHP_EOL; | ||
| } | ||
| ?> | ||
| --EXPECT-- | ||
| ErrorException: The __wakeup() serialization magic method has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. normally tests have a trailing newline MemberAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'll fix this in the follow-up commit with NEWS/UPGRADING | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Swapping the conditions like above might've been good
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah yes... I though I applied the change but apparently I did not, will fix.