15625b985SAndreas Gohr<?php 25625b985SAndreas Gohr 35625b985SAndreas Gohrnamespace plugin\struct\test\mock; 45625b985SAndreas Gohr 55625b985SAndreas Gohruse \plugin\struct\meta; 65625b985SAndreas Gohr 75625b985SAndreas Gohrclass SearchConfig extends meta\SearchConfig { 85625b985SAndreas Gohr public function applyFilterVars($filter) { 95625b985SAndreas Gohr return parent::applyFilterVars($filter); 105625b985SAndreas Gohr } 11*16b7d914SAndreas Gohr 12*16b7d914SAndreas Gohr public function determineCacheFlag($filters) { 13*16b7d914SAndreas Gohr return parent::determineCacheFlag($filters); 14*16b7d914SAndreas Gohr } 15*16b7d914SAndreas Gohr 165625b985SAndreas Gohr} 17