This commit is contained in:
as2252258@163.com
2021-07-27 00:42:16 +08:00
parent 5bc3f7c648
commit 22fa0d292c
+4 -4
View File
@@ -33,21 +33,21 @@ class Controller
* @var \HttpServer\Http\Request * @var \HttpServer\Http\Request
*/ */
#[Inject(className: 'request', withContext: true)] #[Inject(className: 'request', withContext: true)]
protected Request $request; protected ?Request $request = null;
/** /**
* @var \HttpServer\Http\HttpParams * @var \HttpServer\Http\HttpParams
*/ */
#[Inject(className: 'input', withContext: true)] #[Inject(className: 'input', withContext: true)]
protected HttpParams $input; protected ?HttpParams $input = null;
/** /**
* @var \HttpServer\Http\HttpHeaders * @var \HttpServer\Http\HttpHeaders
*/ */
#[Inject(className: 'header', withContext: true)] #[Inject(className: 'header', withContext: true)]
protected HttpHeaders $header; protected ?HttpHeaders $header = null;
/** /**
@@ -56,7 +56,7 @@ class Controller
* @var \HttpServer\Http\Response * @var \HttpServer\Http\Response
*/ */
#[Inject('response')] #[Inject('response')]
protected Response $response; protected ?Response $response = null;
} }