xref: /plugin/struct/_test/mock/AggregationEditorTable.php (revision 308cc83fd5391df29d21d2bc1306c8da49fdb335)
1*308cc83fSAndreas Gohr<?php
2*308cc83fSAndreas Gohr
3*308cc83fSAndreas Gohrnamespace dokuwiki\plugin\struct\test\mock;
4*308cc83fSAndreas Gohr
5*308cc83fSAndreas Gohruse dokuwiki\plugin\struct\meta;
6*308cc83fSAndreas Gohr
7*308cc83fSAndreas Gohrclass AggregationEditorTable extends meta\AggregationEditorTable {
8*308cc83fSAndreas Gohr    public function getResult()
9*308cc83fSAndreas Gohr    {
10*308cc83fSAndreas Gohr        return $this->result;
11*308cc83fSAndreas Gohr    }
12*308cc83fSAndreas Gohr}
13