21 lines
207 B
PHP
21 lines
207 B
PHP
|
<?php
|
||
|
|
||
|
namespace api\module;
|
||
|
|
||
|
use \error\core\Error;
|
||
|
|
||
|
|
||
|
class root{
|
||
|
|
||
|
/* Generates the API documentation
|
||
|
*
|
||
|
*/
|
||
|
public function get($args){
|
||
|
extract($args);
|
||
|
|
||
|
return [ 'args' => $args ];
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|