Code cleanup to use new findCountWhere function
This commit is contained in:
parent
c1a078bdcf
commit
4da7922de6
4 changed files with 9 additions and 10 deletions
|
@ -141,13 +141,11 @@ class DeletionService
|
|||
}
|
||||
|
||||
$this->database->beginTransaction();
|
||||
|
||||
$this->databaseRepository->withColumns('id')->findWhere([['server_id', '=', $server->id]])->each(function ($item) {
|
||||
$this->databaseManagementService->delete($item->id);
|
||||
});
|
||||
|
||||
$this->repository->delete($server->id);
|
||||
|
||||
$this->database->commit();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -78,8 +78,8 @@ class DeletionService
|
|||
$user = $user->id;
|
||||
}
|
||||
|
||||
$servers = $this->serverRepository->findWhere([['owner_id', '=', $user]]);
|
||||
if (count($servers) > 0) {
|
||||
$servers = $this->serverRepository->withColumns('id')->findCountWhere([['owner_id', '=', $user]]);
|
||||
if ($servers > 0) {
|
||||
throw new DisplayException($this->translator->trans('admin/user.exceptions.user_has_servers'));
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue