refactor: add property types

This commit is contained in:
kenjis 2023-07-21 12:11:12 +09:00
parent dec4b71ad4
commit f3bcbfba23
No known key found for this signature in database
GPG Key ID: BD254878922AF198
2 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ class Routing extends BaseRouting
* Example:
* public $override404 = 'App\Errors::show404';
*/
public $override404;
public ?string $override404 = null;
/**
* If TRUE, the system will attempt to match the URI against

View File

@ -76,7 +76,7 @@ class Routing extends BaseConfig
* Example:
* public $override404 = 'App\Errors::show404';
*/
public $override404;
public ?string $override404 = null;
/**
* If TRUE, the system will attempt to match the URI against