31 lines
619 B
PHP
31 lines
619 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace CakeAccounting\Test\Fixture;
|
||
|
|
||
|
use Cake\TestSuite\Fixture\TestFixture;
|
||
|
|
||
|
/**
|
||
|
* DeAccountStatementsFixture
|
||
|
*/
|
||
|
class DeAccountStatementsFixture extends TestFixture
|
||
|
{
|
||
|
/**
|
||
|
* Init method
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function init(): void
|
||
|
{
|
||
|
$this->records = [
|
||
|
[
|
||
|
'account_statement_id' => '4614401e-fe0c-45cf-9f17-c45c7848960e',
|
||
|
'account_number' => 1,
|
||
|
'statement_date' => '2024-11-02',
|
||
|
'closing_balance' => 1.5,
|
||
|
],
|
||
|
];
|
||
|
parent::init();
|
||
|
}
|
||
|
}
|