mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-10 12:24:50 +00:00
Fix code quality with rector [skip ci]
This commit is contained in:
@@ -41,20 +41,11 @@ use Illuminate\Support\Facades\Log;
|
||||
class TransactionFactory
|
||||
{
|
||||
private Account $account;
|
||||
private array $accountInformation;
|
||||
private array $accountInformation = [];
|
||||
private TransactionCurrency $currency;
|
||||
private ?TransactionCurrency $foreignCurrency = null;
|
||||
private TransactionJournal $journal;
|
||||
private bool $reconciled;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->reconciled = false;
|
||||
$this->accountInformation = [];
|
||||
}
|
||||
private bool $reconciled = false;
|
||||
|
||||
/**
|
||||
* Create transaction with negative amount (for source accounts).
|
||||
|
||||
Reference in New Issue
Block a user