We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
See https://getrector.com/demo/71ea7a79-61c4-44d3-a655-69b385710524
<?php final class DemoFile { public function run(bool $permission): bool { switch ($permission) { case 'VIEW': return false; case 'EDIT': return true; } // Comment return true; } }
ChangeSwitchToMatchRector
<?php final class DemoFile { public function run(bool $permission): bool { return match ($permission) { 'VIEW' => false, 'EDIT' => true, // Comment default => true, }; } } }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Bug Report
Minimal PHP Code Causing Issue
See https://getrector.com/demo/71ea7a79-61c4-44d3-a655-69b385710524
Responsible rules
ChangeSwitchToMatchRector
Expected Behavior
The text was updated successfully, but these errors were encountered: