style: 移除冗余的注释

This commit is contained in:
李东云
2023-01-14 05:24:10 +08:00
parent 427ba4b322
commit 3d092074b3

View File

@@ -42,24 +42,16 @@ abstract class AbstractController
use DontSerialise; use DontSerialise;
use DontDeserialise; use DontDeserialise;
use DontToString; use DontToString;
/**
* @var ContainerInterface
*/
#[Inject] #[Inject]
protected ContainerInterface $container; protected ContainerInterface $container;
/**
* @var RequestInterface
*/
#[Inject] #[Inject]
protected RequestInterface $request; protected RequestInterface $request;
/**
* @var ResponseInterface
*/
#[Inject] #[Inject]
protected ResponseInterface $response; protected ResponseInterface $response;
/**
* @var \Hyperf\Contract\StdoutLoggerInterface
*/
#[Inject] #[Inject]
protected StdoutLoggerInterface $stdoutLogger; protected StdoutLoggerInterface $stdoutLogger;
} }