mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-11 04:44:46 +00:00
Fix bad call to method.
This commit is contained in:
@@ -50,11 +50,11 @@ class ReconciliationStoreRequest extends FormRequest
|
||||
$data = [
|
||||
'start' => $this->getCarbonDate('start'),
|
||||
'end' => $this->getCarbonDate('end'),
|
||||
'start_balance' => $this->string('startBalance'),
|
||||
'end_balance' => $this->string('endBalance'),
|
||||
'difference' => $this->string('difference'),
|
||||
'start_balance' => $this->convertString('startBalance'),
|
||||
'end_balance' => $this->convertString('endBalance'),
|
||||
'difference' => $this->convertString('difference'),
|
||||
'journals' => $transactions,
|
||||
'reconcile' => $this->string('reconcile'),
|
||||
'reconcile' => $this->convertString('reconcile'),
|
||||
];
|
||||
Log::debug('In ReconciliationStoreRequest::getAll(). Will now return data.');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user