2023-02-17 17:10:16 +08:00

21 lines
374 B
PHP

<?php
namespace App\Services;
use App\Constants\HttpEnumCode;
use Hyperf\HttpServer\Contract\RequestInterface;
use Hyperf\HttpServer\Contract\ResponseInterface;
use Psr\Container\ContainerInterface;
use Hyperf\Di\Annotation\Inject;
class BaseService
{
#[Inject]
protected ContainerInterface $container;
#[Inject]
protected RequestInterface $request;
}