src/Operator.php
Operator
has 21 functions (exceeds 20 allowed). Consider refactoring. Wontfix
Wontfix
final class Operator
{
private const EQUALS = 'EQUALS';
private const LESS = 'LESS';
private const LESS_EQUALS = 'LESS_EQUALS';
Avoid too many return
statements within this method. Wontfix
Wontfix
case self::GREATER_EQUALS: return '>=';
Avoid too many return
statements within this method. Wontfix
Wontfix
case self::CONTAINS_ANY: return 'contains any';
Avoid too many return
statements within this method. Open
Open
case self::CONTAINS_ALL: return 'contains all';
Avoid too many return
statements within this method. Open
Open
case self::MATCHES: return 'matches';
Avoid too many return
statements within this method. Open
Open
return 'UNKNOWN';
Avoid too many return
statements within this method. Open
Open
case self::IN: return 'in';