File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1092,7 +1092,7 @@ A `switch` structure looks like the following. Note the placement of
10921092parentheses, spaces, and braces. The ` case ` statement MUST be indented once
10931093from ` switch ` , and the ` break ` keyword (or other terminating keywords) MUST be
10941094indented at the same level as the ` case ` body. There MUST be a comment such as
1095- ` // No break ` when fall-through is intentional in a non-empty ` case ` body.
1095+ ` // no break ` when fall-through is intentional in a non-empty ` case ` body.
10961096
10971097``` php
10981098<?php
@@ -1103,7 +1103,7 @@ switch ($expr) {
11031103 break;
11041104 case 1:
11051105 echo 'Second case, which falls through';
1106- // No break
1106+ // no break
11071107 case 2:
11081108 case 3:
11091109 case 4:
You can’t perform that action at this time.
0 commit comments