Fixed null-typing check

This commit is contained in:
netkas 2024-09-24 14:56:27 -04:00
parent fdb752cfe0
commit 5e849d079f

View file

@ -31,9 +31,9 @@
/** /**
* Cache of the parsed arguments. This is used to prevent the arguments from being parsed more than once. * 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 * Parses the input arguments into an array of flags and values