Code Duplication    Length = 4-4 lines in 2 locations

src/Grid/Concerns/HasQuickSearch.php 2 locations

@@ 126-129 (lines=4) @@
123
                continue;
124
            }
125
126
            if (preg_match('/\/(?<value>.*)\//', $condition, $match) !== 0) {
127
                $this->applyWhereQuery($column, $or, 'REGEXP', $match['value']);
128
                continue;
129
            }
130
131
            if (preg_match('/(?<operator>>=?|<=?|!=|%){0,1}(?<value>.*)/', $condition, $match) !== 0) {
132
                $this->applyWhereQuery($column, $or, $match['operator'], $match['value']);
@@ 131-134 (lines=4) @@
128
                continue;
129
            }
130
131
            if (preg_match('/(?<operator>>=?|<=?|!=|%){0,1}(?<value>.*)/', $condition, $match) !== 0) {
132
                $this->applyWhereQuery($column, $or, $match['operator'], $match['value']);
133
                continue;
134
            }
135
        }
136
    }
137