Split group update now works.

This commit is contained in:
James Cole
2019-06-02 16:33:25 +02:00
parent f46834e203
commit 6a6d67f2b4
6 changed files with 239 additions and 84 deletions

View File

@@ -141,7 +141,7 @@ class AccountValidator
switch ($this->transactionType) {
default:
$result = false;
$this->sourceError = sprintf('Cannot handle type "%s"', $this->transactionType);
$this->sourceError = sprintf('Cannot handle type "%s" :(', $this->transactionType);
Log::error(sprintf('AccountValidator::validateSource cannot handle "%s", so it will always return false.', $this->transactionType));
break;
case TransactionType::WITHDRAWAL: