@@ -28,7 +28,7 @@ |
||
28 | 28 | \JobApis\JobsToMail\Repositories\UserRepository::class |
29 | 29 | ); |
30 | 30 | // Job board API client |
31 | - $this->app->bind(JobsMulti::class, function () { |
|
31 | + $this->app->bind(JobsMulti::class, function() { |
|
32 | 32 | return new JobsMulti(config('jobboards')); |
33 | 33 | }); |
34 | 34 | } |
@@ -57,7 +57,7 @@ |
||
57 | 57 | protected function unauthenticated($request, AuthenticationException $exception) |
58 | 58 | { |
59 | 59 | if ($request->expectsJson()) { |
60 | - return response()->json(['error' => 'Unauthenticated.'], 401); |
|
60 | + return response()->json([ 'error' => 'Unauthenticated.' ], 401); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | return redirect()->guest('login'); |
@@ -4,9 +4,9 @@ |
||
4 | 4 | { |
5 | 5 | public function confirm($token = null); |
6 | 6 | |
7 | - public function create($data = []); |
|
7 | + public function create($data = [ ]); |
|
8 | 8 | |
9 | - public function getById($id = null, $options = []); |
|
9 | + public function getById($id = null, $options = [ ]); |
|
10 | 10 | |
11 | - public function update($id = null, $data = []); |
|
11 | + public function update($id = null, $data = [ ]); |
|
12 | 12 | } |