App_Controller_AbstractController.proxy.php 814 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. declare (strict_types=1);
  3. /**
  4. * This file is part of Hyperf.
  5. *
  6. * @link https://www.hyperf.io
  7. * @document https://hyperf.wiki
  8. * @contact group@hyperf.io
  9. * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
  10. */
  11. namespace App\Controller;
  12. use Hyperf\Di\Annotation\Inject;
  13. use Hyperf\HttpServer\Contract\RequestInterface;
  14. use Hyperf\HttpServer\Contract\ResponseInterface;
  15. use Psr\Container\ContainerInterface;
  16. abstract class AbstractController
  17. {
  18. use \Hyperf\Di\Aop\ProxyTrait;
  19. use \Hyperf\Di\Aop\PropertyHandlerTrait;
  20. function __construct()
  21. {
  22. $this->__handlePropertyHandler(__CLASS__);
  23. }
  24. #[Inject]
  25. protected ContainerInterface $container;
  26. #[Inject]
  27. protected RequestInterface $request;
  28. #[Inject]
  29. protected ResponseInterface $response;
  30. }