2017-12-11 17:01:49 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace api\module;
|
|
|
|
|
|
|
|
use \error\core\Error;
|
|
|
|
|
|
|
|
|
|
|
|
class root{
|
|
|
|
|
|
|
|
/* Generates the API documentation
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function get($args){
|
|
|
|
extract($args);
|
|
|
|
|
2017-12-11 17:30:29 +00:00
|
|
|
return [ 'args' => $args ];
|
2017-12-11 17:01:49 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|