bug #11186 Added missing break statement (apfelbox)

This PR was submitted for the master branch but it was merged into the 2.3 branch instead (closes #11186).

Discussion
----------

Added missing `break` statement

Added a missing `break` statement in `AbstractFindAdapter` - a fall-through doesn't seem to be intended here.

Commits
-------

5af2802 Added missing `break` statement
This commit is contained in:
Fabien Potencier 2014-06-20 18:06:34 +02:00
commit ff00dcce7d

View File

@ -256,6 +256,7 @@ abstract class AbstractFindAdapter extends AbstractAdapter
case '!=':
$command->add('-size -'.$size->getTarget().'c');
$command->add('-size +'.$size->getTarget().'c');
break;
case '<':
default:
$command->add('-size -'.$size->getTarget().'c');