diff --git a/app/Repositories/Rule/RuleRepository.php b/app/Repositories/Rule/RuleRepository.php index 2d3ef6d7d9..3aba0f8ebd 100644 --- a/app/Repositories/Rule/RuleRepository.php +++ b/app/Repositories/Rule/RuleRepository.php @@ -150,7 +150,6 @@ class RuleRepository implements RuleRepositoryInterface $params[] = sprintf('%s:true', OperatorQuerySearch::getRootOperator($trigger->trigger_type)); } if (true === $needsContext) { - var_dump('x'); $params[] = sprintf('%s:"%s"', OperatorQuerySearch::getRootOperator($trigger->trigger_type), $trigger->trigger_value); } } diff --git a/app/Services/Internal/Support/CreditRecalculateService.php b/app/Services/Internal/Support/CreditRecalculateService.php index 1ca08e58f4..5f705be79f 100644 --- a/app/Services/Internal/Support/CreditRecalculateService.php +++ b/app/Services/Internal/Support/CreditRecalculateService.php @@ -216,7 +216,6 @@ class CreditRecalculateService app('log')->debug(sprintf('Destination amount "%s" is now "%s"', $dest->amount, app('steam')->negative($dest->amount))); $source->amount = app('steam')->positive($source->amount); $dest->amount = app('steam')->negative($source->amount); - var_dump($source->foreign_amount); if (null !== $source->foreign_amount && '' !== $source->foreign_amount) { $source->foreign_amount = app('steam')->positive($source->foreign_amount); app('log')->debug(sprintf('Source foreign amount "%s" is now "%s"', $source->foreign_amount, app('steam')->positive($source->foreign_amount)));