@@ -38,7 +38,7 @@ |
||
38 | 38 | // should return either a User instance or null. You're free to obtain |
39 | 39 | // the User instance via an API token or any other method necessary. |
40 | 40 | |
41 | - $this->app['auth']->viaRequest('api', function ($request) { |
|
41 | + $this->app[ 'auth' ]->viaRequest('api', function($request) { |
|
42 | 42 | if ($request->input('api_token')) { |
43 | 43 | return User::where('api_token', $request->input('api_token'))->first(); |
44 | 44 | } |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | public function getGalaxies() |
15 | 15 | { |
16 | 16 | return GalaxyResource::collection( |
17 | - Cache::remember('galaxies', 60, function () { |
|
17 | + Cache::remember('galaxies', 60, function() { |
|
18 | 18 | return Galaxy::with('type')->get(); |
19 | 19 | }) |
20 | 20 | ); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | public function getTypes() |
24 | 24 | { |
25 | 25 | return GalaxyTypeResource::collection( |
26 | - Cache::remember('galaxy_types', 60, function () { |
|
26 | + Cache::remember('galaxy_types', 60, function() { |
|
27 | 27 | return GalaxyType::all(); |
28 | 28 | }) |
29 | 29 | ); |