Skip to content

Commit 737cb57

Browse files
committed
Remove useless break statement
1 parent bcfac35 commit 737cb57

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/FormulaConverter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ private static function expandAtom($atom)
162162
}
163163
switch ($op) {
164164
case '==':
165-
return '(' . implode(' || ', $chunks) . ')'; break;
165+
return '(' . implode(' || ', $chunks) . ')';
166166
case '!=':
167167
return implode(' && ', $chunks);
168168
}

0 commit comments

Comments
 (0)