8000 Added missing `break` statement · symfony/symfony@5af2802 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5af2802

Browse files
apfelboxfabpot
authored andcommitted
Added missing break statement
Added missing `break` statement in `AbstractFindAdapter` - a fall through doesn't seem to be intended here.
1 parent 96bc061 commit 5af2802

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Symfony/Component/Finder/Adapter/AbstractFindAdapter.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ private function buildSizesFiltering(Command $command, array $sizes)
256256
case '!=':
257257
$command->add('-size -'.$size->getTarget().'c');
258258
$command->add('-size +'.$size->getTarget().'c');
259+
break;
259260
case '<':
260261
default:
261262
$command->add('-size -'.$size->getTarget().'c');

0 commit comments

Comments
 (0)
0