@@ -97,8 +97,7 @@ |
||
97 | 97 | foreach ($filters as $key => $value) { |
98 | 98 | $current = $propertyAccessor->getValue($entity, $key); |
99 | 99 | $res = $res && (is_array($value) ? |
100 | - in_array($current, $value) : |
|
101 | - $current == $value |
|
100 | + in_array($current, $value) : $current == $value |
|
102 | 101 | ); |
103 | 102 | } |
104 | 103 |