ptut-vhost/build/api/module/root.php

21 lines
207 B
PHP
Raw Permalink Normal View History

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