xref: /plugin/struct/_test/mock/SearchConfig.php (revision 5625b9852e4b32987787d47facc1d75903f74f2d)
1*5625b985SAndreas Gohr<?php
2*5625b985SAndreas Gohr
3*5625b985SAndreas Gohrnamespace plugin\struct\test\mock;
4*5625b985SAndreas Gohr
5*5625b985SAndreas Gohruse \plugin\struct\meta;
6*5625b985SAndreas Gohr
7*5625b985SAndreas Gohrclass SearchConfig extends meta\SearchConfig {
8*5625b985SAndreas Gohr    public function applyFilterVars($filter) {
9*5625b985SAndreas Gohr        return parent::applyFilterVars($filter);
10*5625b985SAndreas Gohr    }
11*5625b985SAndreas Gohr}
12