php-json-rpc/src/Server/JsonRpcServerDoc.php

25 lines
354 B
PHP
Raw Normal View History

2019-01-05 03:25:30 +00:00
<?php
namespace JsonRpc\Server;
class JsonRpcDoc
{
protected $methods = [];
public function __construct($dir)
{
$this->methods = include $dir . '/methods.php';
}
public function methods()
{
return $this->methods;
}
public function render()
{
return view('doc', ['doc' => $this]);
}
}