2018-02-17 18:02:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace api\module;
|
|
|
|
|
|
|
|
use \error\core\Error;
|
|
|
|
|
|
|
|
|
2018-03-01 16:21:48 +00:00
|
|
|
class rootController{
|
2018-02-17 18:02:00 +00:00
|
|
|
|
|
|
|
/* Generates the API documentation
|
|
|
|
*
|
|
|
|
*/
|
2018-03-05 18:35:35 +00:00
|
|
|
public function post($args){
|
2018-02-17 18:02:00 +00:00
|
|
|
extract($args);
|
|
|
|
|
|
|
|
return [ 'args' => $args ];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|