Request.php 136 B

12345678910111213
  1. <?php
  2. namespace app;
  3. class Request extends \think\Request
  4. {
  5. function __construct()
  6. {
  7. parent::__construct();
  8. }
  9. }