1<?php 2 3namespace dokuwiki\plugin\struct\test\mock; 4 5use dokuwiki\plugin\struct\meta\SearchConfig; 6 7class AggregationFilter extends \dokuwiki\plugin\struct\meta\AggregationFilter 8{ 9 /** 10 * We do not initialize this one at all 11 * @noinspection PhpMissingParentConstructorInspection 12 */ 13 public function __construct() 14 { 15 } 16 17 /** @inheritdoc */ 18 public function getAllColumnValues($result) 19 { 20 return parent::getAllColumnValues($result); 21 } 22} 23