Apply fixes from StyleCI (#372)

This commit is contained in:
Dane Everitt 2017-04-09 19:16:39 -04:00 committed by GitHub
parent 7bd14db646
commit 93d79994f8
22 changed files with 43 additions and 32 deletions

View file

@ -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;
}
}