Apply fixes from StyleCI (#372)
This commit is contained in:
parent
7bd14db646
commit
93d79994f8
22 changed files with 43 additions and 32 deletions
|
@ -64,7 +64,7 @@ class CheckServer
|
|||
$this->request = $request;
|
||||
$this->server = Server::byUuid($request->route()->server);
|
||||
|
||||
if(! $this->exists()) {
|
||||
if (! $this->exists()) {
|
||||
return response()->view('errors.404', [], 404);
|
||||
}
|
||||
|
||||
|
@ -124,6 +124,6 @@ class CheckServer
|
|||
}
|
||||
}
|
||||
|
||||
return ($this->server->installed === 1);
|
||||
return $this->server->installed === 1;
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue