mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-16 03:58:39 +00:00
fix return type
This commit is contained in:
parent
ab385bfbb5
commit
e008c094e5
|
|
@ -27,6 +27,8 @@ class MazeGenerator
|
|||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@ final class Currency
|
|||
/**
|
||||
* ECB currency rates.
|
||||
*
|
||||
* @var null|array
|
||||
* @var array
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private static ?array $ecbCurrencies = null;
|
||||
private static array $ecbCurrencies = [];
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
|
|
@ -59,7 +59,7 @@ final class Currency
|
|||
*/
|
||||
public static function resetCurrencies() : void
|
||||
{
|
||||
self::$ecbCurrencies = null;
|
||||
self::$ecbCurrencies = [];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user