Code Duplication    Length = 4-4 lines in 2 locations

src/Xhgui/Storage/PDO.php 2 locations

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