mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-18 18:40:12 +00:00
Code cleanup.
This commit is contained in:
@@ -128,7 +128,7 @@ class TransactionUpdateServiceTest extends TestCase
|
||||
'foreign_amount' => null,
|
||||
'budget_id' => null,
|
||||
'budget_name' => null,
|
||||
'destination_id' => intval($source->account_id),
|
||||
'destination_id' => (int)$source->account_id,
|
||||
'destination_name' => null,
|
||||
'category_id' => null,
|
||||
'category_name' => null,
|
||||
@@ -167,7 +167,7 @@ class TransactionUpdateServiceTest extends TestCase
|
||||
'foreign_amount' => '12.34',
|
||||
'budget_id' => null,
|
||||
'budget_name' => null,
|
||||
'destination_id' => intval($source->account_id),
|
||||
'destination_id' => (int)$source->account_id,
|
||||
'destination_name' => null,
|
||||
'category_id' => null,
|
||||
'category_name' => null,
|
||||
@@ -210,7 +210,7 @@ class TransactionUpdateServiceTest extends TestCase
|
||||
'foreign_amount' => null,
|
||||
'budget_id' => null,
|
||||
'budget_name' => null,
|
||||
'source_id' => intval($source->account_id),
|
||||
'source_id' => (int)$source->account_id,
|
||||
'source_name' => null,
|
||||
'category_id' => null,
|
||||
'category_name' => null,
|
||||
|
Reference in New Issue
Block a user