Server.php 164 B

12345678910111213
  1. <?php
  2. namespace app\common\hprose;
  3. class Server extends Service
  4. {
  5. public function start()
  6. {
  7. return $this->handle(request(), response());
  8. }
  9. }