Fixed null-typing check
This commit is contained in:
parent
fdb752cfe0
commit
5e849d079f
1 changed files with 2 additions and 2 deletions
|
@ -31,9 +31,9 @@
|
|||
/**
|
||||
* Cache of the parsed arguments. This is used to prevent the arguments from being parsed more than once.
|
||||
*
|
||||
* @var array
|
||||
* @var array|null
|
||||
*/
|
||||
private static array $args_cache;
|
||||
private static ?array $args_cache = null;
|
||||
|
||||
/**
|
||||
* Parses the input arguments into an array of flags and values
|
||||
|
|
Loading…
Add table
Reference in a new issue