fix tests

This commit is contained in:
Dennis Eichhorn 2023-09-27 00:47:46 +00:00
parent f80cc308ca
commit ef18fef2b2
3 changed files with 4 additions and 2 deletions

View File

@ -15,6 +15,7 @@ declare(strict_types=1);
namespace Modules\Accounting\Models;
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
use phpOMS\Localization\BaseStringL11n;
/**
* CostCenter mapper class.

View File

@ -15,6 +15,7 @@ declare(strict_types=1);
namespace Modules\Accounting\Models;
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
use phpOMS\Localization\BaseStringL11n;
/**
* CostObject mapper class.

View File

@ -38,7 +38,7 @@ class IncomeStatement
* @var null|\DateTime
* @since 1.0.0
*/
private ?\DateTime $date = null;
public ?\DateTime $date = null;
/**
* Income statement structure.
@ -46,5 +46,5 @@ class IncomeStatement
* @var array
* @since 1.0.0
*/
private array $incomeStatement = [];
public array $incomeStatement = [];
}