SiyuanController.php 550 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace App\Http\Controllers\Api\v1;
  3. use App\Http\Controllers\Api\BaseController;
  4. use App\Services\SiyuanService;
  5. /**
  6. * 寺院控制器类
  7. * @author wesmiler
  8. * @since 2020/11/10
  9. * Class SiyuanController
  10. * @package App\Http\Controllers
  11. */
  12. class SiyuanController extends BaseController
  13. {
  14. /**
  15. * 构造函数
  16. * @author wesmiler
  17. * @since 2020/11/11
  18. * SiyuanController constructor.
  19. */
  20. public function __construct()
  21. {
  22. parent::__construct();
  23. $this->service = new SiyuanService();
  24. }
  25. }