Ignore basic methods, improving code coverage.

This commit is contained in:
James Cole
2018-06-02 06:18:07 +02:00
parent ddc1d81665
commit ba01c4bbe8
22 changed files with 104 additions and 89 deletions

View File

@@ -51,7 +51,7 @@ class AccountUpdateService
$account->iban = $data['iban'];
$account->save();
if(isset($data['currency_id']) && $data['currency_id'] === 0) {
if (isset($data['currency_id']) && $data['currency_id'] === 0) {
unset($data['currency_id']);
}