mirror of
https://github.com/cosmocode/dokuwiki-plugin-struct.git
synced 2025-08-01 15:54:34 +00:00
14 lines
217 B
PHP
14 lines
217 B
PHP
<?php
|
|
|
|
namespace dokuwiki\plugin\struct\test\mock;
|
|
|
|
use dokuwiki\plugin\struct\meta;
|
|
|
|
class AggregationTable extends meta\AggregationTable
|
|
{
|
|
public function getResult()
|
|
{
|
|
return $this->result;
|
|
}
|
|
}
|