33 lines
767 B
PHP
33 lines
767 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace CakeAccounting\Test\Fixture;
|
||
|
|
||
|
use Cake\TestSuite\Fixture\TestFixture;
|
||
|
|
||
|
/**
|
||
|
* DeExternalAccountStatementsFixture
|
||
|
*/
|
||
|
class DeExternalAccountStatementsFixture extends TestFixture
|
||
|
{
|
||
|
/**
|
||
|
* Init method
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function init(): void
|
||
|
{
|
||
|
$this->records = [
|
||
|
[
|
||
|
'external_account_statement_id' => '2f83162b-2bec-4826-8853-fbda2fac3a95',
|
||
|
'external_account_number' => 'ded3dbc1-bfb3-4e7f-b4d0-a6af01724441',
|
||
|
'statement_date' => '2024-11-02',
|
||
|
'closing_balance' => 1.5,
|
||
|
'total_credit' => 1.5,
|
||
|
'total_debit' => 1.5,
|
||
|
],
|
||
|
];
|
||
|
parent::init();
|
||
|
}
|
||
|
}
|