Code cleanup to use new findCountWhere function

This commit is contained in:
Dane Everitt 2017-08-05 17:23:02 -05:00
parent c1a078bdcf
commit 4da7922de6
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
4 changed files with 9 additions and 10 deletions

View file

@ -68,8 +68,6 @@ class UpdateService
$data['password'] = $this->hasher->make($data['password']);
}
$user = $this->repository->update($id, $data);
return $user;
return $this->repository->update($id, $data);
}
}