Signagent.php 279 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Elton
  5. * Date: 2019/8/28
  6. * Time: 19:57
  7. */
  8. namespace app\clientweb\controller;
  9. use app\common\controller\ClientWeb;
  10. class Signagent extends ClientWeb
  11. {
  12. public function index()
  13. {
  14. return $this->view->fetch();
  15. }
  16. }