8000 [Validator] remove return type declaration from __sleep() by xabbuh · Pull Request #34513 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Validator] remove return type declaration from __sleep() #34513

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

Merged
merged 1 commit into from
Nov 24, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
remove return type declaration from __sleep()
  • Loading branch information
xabbuh committed Nov 22, 2019
commit bedad35e59bf7f6834ddb0fd75b21f3dd7a16d25
2 changes: 1 addition & 1 deletion src/Symfony/Component/Validator/Constraint.php
< 518F td id="diff-eadef5e494fbfb85346e70992f4b18994df0b999b7d336c9cece5ab9e9a4a18aR289" data-line-number="289" class="blob-num blob-num-context js-linkable-line-number js-blob-rnum">
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ public function getTargets()
*
* @internal
*/
public function __sleep(): array
public function __sleep()
{
// Initialize "groups" option if it is not set
$this->groups;
Expand Down
0