Skip to content

Commit

Permalink
Fix inconsistent switch case syntax (#530)
Browse files Browse the repository at this point in the history
  • Loading branch information
theodorejb authored Nov 11, 2024
1 parent c063a75 commit f42cdf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/router/RouterRules.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ protected function scanRule($rule, $type = null)
case WebUrlRule::CREATION_ONLY:
$mode = 'creation only';
break;
case null;
case null:
$mode = null;
break;
default:
Expand Down

0 comments on commit f42cdf8

Please sign in to comment.