mirror of
https://github.com/cosmocode/dokuwiki-plugin-struct.git
synced 2025-07-25 16:01:54 +00:00
13 lines
224 B
PHP
13 lines
224 B
PHP
<?php
|
|
|
|
namespace dokuwiki\plugin\struct\test\mock;
|
|
|
|
class AccessTableGlobal extends \dokuwiki\plugin\struct\meta\AccessTableGlobal
|
|
{
|
|
|
|
public function getDataFromDB()
|
|
{
|
|
return parent::getDataFromDB();
|
|
}
|
|
}
|