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