Index.php 235 B

12345678910111213
  1. <?php
  2. namespace app\guildapi\controller;
  3. class Index extends Guild
  4. {
  5. public function _initialize(){}//不需要继承父级构造
  6. public function index()
  7. {
  8. return $this->jsonResult([], 20000, 'success');
  9. }
  10. }