xref: /plugin/struct/_test/mock/SearchConfig.php (revision fdf371159b3e9f57726cdb9c44df35e764a8770a)
15625b985SAndreas Gohr<?php
25625b985SAndreas Gohr
3ba766201SAndreas Gohrnamespace dokuwiki\plugin\struct\test\mock;
45625b985SAndreas Gohr
5*0549dcc5SAndreas Gohruse dokuwiki\plugin\struct\meta;
65625b985SAndreas Gohr
7*0549dcc5SAndreas Gohrclass SearchConfig extends meta\SearchConfig
8*0549dcc5SAndreas Gohr{
9*0549dcc5SAndreas Gohr    public function applyFilterVars($filter)
10*0549dcc5SAndreas Gohr    {
115625b985SAndreas Gohr        return parent::applyFilterVars($filter);
125625b985SAndreas Gohr    }
1316b7d914SAndreas Gohr
14*0549dcc5SAndreas Gohr    public function determineCacheFlag($filters)
15*0549dcc5SAndreas Gohr    {
1616b7d914SAndreas Gohr        return parent::determineCacheFlag($filters);
1716b7d914SAndreas Gohr    }
185625b985SAndreas Gohr}
19