Skip to content

Commit

Permalink
Auto commit for release 'develop' on 2024-10-22
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 22, 2024
1 parent eb40fe8 commit 631a7d6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/Services/Shared/Import/Routine/ApiSubmitter.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ public function processTransactions(array $lines): void
$unique = $this->uniqueTransaction($index, $line);
if (null === $unique) {
app('log')->debug(sprintf('Transaction #%d is not checked beforehand on uniqueness.', $index + 1));
$uniqueCount++;
++$uniqueCount;
}
if (true === $unique) {
app('log')->debug(sprintf('Transaction #%d is unique.', $index + 1));
$uniqueCount++;
++$uniqueCount;
}
if (false === $unique) {
app('log')->debug(sprintf('Transaction #%d is NOT unique.', $index + 1));
Expand Down
10 changes: 5 additions & 5 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 631a7d6

Please sign in to comment.