mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Code cleanup that (hopefully) matches style CI
This commit is contained in:
@@ -30,6 +30,7 @@ use Schema;
|
||||
|
||||
/**
|
||||
* Class ReportIntegrity
|
||||
*
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
class ReportIntegrity extends Command
|
||||
|
@@ -69,7 +69,7 @@ class ReportSum extends Command
|
||||
|
||||
/** @var User $user */
|
||||
foreach ($userRepository->all() as $user) {
|
||||
$sum = (string)$user->transactions()->sum('amount');
|
||||
$sum = (string) $user->transactions()->sum('amount');
|
||||
if (0 !== bccomp($sum, '0')) {
|
||||
$message = sprintf('Error: Transactions for user #%d (%s) are off by %s!', $user->id, $user->email, $sum);
|
||||
$this->error($message);
|
||||
|
Reference in New Issue
Block a user