Skip to content

Commit

Permalink
Implement code review changes related to commit 4 (7574c4a)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigoprimo committed Dec 17, 2024
1 parent 268d1a5 commit 9d88066
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ endswitch;
/* testSwitchClosureWithinCondition */
switch((function () {
return 'bar';
})()) /* testSwitchAfterConditionMarker */ {
})()) /* testSwitchClosureWithinConditionScopeOpener */ {
case 1:
return 'test';
}
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ public static function dataSwitchScope()
'scope_opener' => T_OPEN_CURLY_BRACKET,
'scope_closer' => T_CLOSE_CURLY_BRACKET,
],
'testOpenerMarker' => '/* testSwitchAfterConditionMarker */',
'testCloserMarker' => '/* testSwitchAfterConditionMarker */',
'testOpenerMarker' => '/* testSwitchClosureWithinConditionScopeOpener */',
'testCloserMarker' => '/* testSwitchClosureWithinConditionScopeOpener */',
],
];

Expand Down

0 comments on commit 9d88066

Please sign in to comment.