Code style fixes.

This commit is contained in:
James Cole
2020-07-31 09:42:00 +02:00
parent 9234636422
commit c0b7ef878a
47 changed files with 39 additions and 52 deletions

View File

@@ -41,6 +41,7 @@ class AccountController extends Controller
use AccountFilter;
private array $balanceTypes;
private AccountRepositoryInterface $repository;
@@ -60,7 +61,7 @@ class AccountController extends Controller
return $next($request);
}
);
$this->balanceTypes = [AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE,];
$this->balanceTypes = [AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE, ];
}
/**