Request.php 147 B

123456789101112
  1. <?php
  2. namespace app;
  3. // 应用请求对象类
  4. class Request extends \think\Request
  5. {
  6. /**
  7. * @var mixed|null
  8. */
  9. private $user;
  10. }