<?php
declare(strict_types=1);
namespace App\Controller;
use Core\Common\Container\Response;
use Hyperf\Di\Annotation\Inject;
use Hyperf\HttpServer\Contract\RequestInterface;use Psr\Container\ContainerInterface;
use Hyperf\Contract\SessionInterface;
use Hyperf\Validation\Contract\ValidatorFactoryInterface;
abstract class AbstractController
{
protected $container;
protected $request;
protected $response;
protected $session;
protected $validation;
}