@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | |
| 39 | 39 | $addInstallTask = false; |
| 40 | 40 | if (isset($attributes['install'])) { |
| 41 | - $attributes['installed'] = ! $attributes['install']; |
|
| 41 | + $attributes['installed'] = !$attributes['install']; |
|
| 42 | 42 | $addInstallTask = true; |
| 43 | 43 | |
| 44 | 44 | unset($attributes['install']); |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | { |
| 89 | 89 | return $this->model->select(['id', 'name', 'server_ip', 'server_port', 'game_id', 'game_mod_id']) |
| 90 | 90 | ->with(['game' => function($query) { |
| 91 | - $query->select('code','name'); |
|
| 91 | + $query->select('code', 'name'); |
|
| 92 | 92 | }]) |
| 93 | 93 | ->where('name', 'LIKE', '%' . $query . '%') |
| 94 | 94 | ->get(); |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | */ |
| 35 | 35 | public function index() |
| 36 | 36 | { |
| 37 | - return view('servers.list',[ |
|
| 37 | + return view('servers.list', [ |
|
| 38 | 38 | 'servers' => $this->repository->getServersForAuth() |
| 39 | 39 | ]); |
| 40 | 40 | } |