mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-18 04:19:12 +00:00
🤖 Auto commit for release 'develop' on 2025-12-17
This commit is contained in:
@@ -34,6 +34,7 @@ use FireflyIII\Services\Internal\Update\AccountUpdateService;
|
||||
use Illuminate\Database\QueryException;
|
||||
use Illuminate\Support\Facades\Validator;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
use FireflyIII\Support\Facades\Steam;
|
||||
|
||||
/**
|
||||
* Class TransactionFactory
|
||||
@@ -58,10 +59,10 @@ class TransactionFactory
|
||||
$foreignAmount = null;
|
||||
}
|
||||
if (null !== $foreignAmount) {
|
||||
$foreignAmount = \FireflyIII\Support\Facades\Steam::negative($foreignAmount);
|
||||
$foreignAmount = Steam::negative($foreignAmount);
|
||||
}
|
||||
|
||||
return $this->create(\FireflyIII\Support\Facades\Steam::negative($amount), $foreignAmount);
|
||||
return $this->create(Steam::negative($amount), $foreignAmount);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -170,10 +171,10 @@ class TransactionFactory
|
||||
$foreignAmount = null;
|
||||
}
|
||||
if (null !== $foreignAmount) {
|
||||
$foreignAmount = \FireflyIII\Support\Facades\Steam::positive($foreignAmount);
|
||||
$foreignAmount = Steam::positive($foreignAmount);
|
||||
}
|
||||
|
||||
return $this->create(\FireflyIII\Support\Facades\Steam::positive($amount), $foreignAmount);
|
||||
return $this->create(Steam::positive($amount), $foreignAmount);
|
||||
}
|
||||
|
||||
public function setAccount(Account $account): void
|
||||
|
||||
Reference in New Issue
Block a user