Code Duplication    Length = 4-4 lines in 2 locations

src/Xhgui/Storage/PDO.php 2 locations

@@ 131-134 (lines=4) @@
128
                        break;
129
130
                    case 'action':
131
                    case 'controller':
132
                        $where[] = ' ' . $dbField . ' like :' . $field . ' ';
133
                        $params[$field] = ($filter->{$method}()) . '%';
134
                        break;
135
136
                    case 'cookie':
137
                        // @todo move this to driver specific storage class
@@ 148-151 (lines=4) @@
145
                        );
146
                        break;
147
148
                    default:
149
                        $where[] = ' ' . $dbField . ' = :' . $field . ' ';
150
                        $params[$field] = $filter->{$method}();
151
                        break;
152
                }
153
            }
154
        }