@@ -59,7 +59,7 @@ |
||
59 | 59 | /** |
60 | 60 | * Store a new snippet in the database. |
61 | 61 | * |
62 | - * @return \RedirectResponse |
|
62 | + * @return \Illuminate\Http\RedirectResponse |
|
63 | 63 | */ |
64 | 64 | public function store() |
65 | 65 | { |
@@ -68,8 +68,8 @@ |
||
68 | 68 | 'body' => 'required', |
69 | 69 | ]); |
70 | 70 | |
71 | - $data = request()->only(['title', 'body', 'forked_id']); |
|
72 | - $data['user_id'] = auth()->user()->id; |
|
71 | + $data = request()->only([ 'title', 'body', 'forked_id' ]); |
|
72 | + $data[ 'user_id' ] = auth()->user()->id; |
|
73 | 73 | |
74 | 74 | Snippet::create($data); |
75 | 75 |
@@ -9,7 +9,7 @@ |
||
9 | 9 | /** |
10 | 10 | * Store a new vote in the database. |
11 | 11 | * |
12 | - * @return int |
|
12 | + * @return \Illuminate\Http\JsonResponse |
|
13 | 13 | */ |
14 | 14 | public function store(Snippet $snippet) |
15 | 15 | { |
@@ -34,6 +34,6 @@ |
||
34 | 34 | */ |
35 | 35 | public function __construct() |
36 | 36 | { |
37 | - $this->middleware('guest', ['except' => 'logout']); |
|
37 | + $this->middleware('guest', [ 'except' => 'logout' ]); |
|
38 | 38 | } |
39 | 39 | } |
@@ -64,10 +64,10 @@ |
||
64 | 64 | protected function create(array $data) |
65 | 65 | { |
66 | 66 | return User::create([ |
67 | - 'name' => $data['name'], |
|
68 | - 'username' => $data['username'], |
|
69 | - 'email' => $data['email'], |
|
70 | - 'password' => bcrypt($data['password']), |
|
67 | + 'name' => $data[ 'name' ], |
|
68 | + 'username' => $data[ 'username' ], |
|
69 | + 'email' => $data[ 'email' ], |
|
70 | + 'password' => bcrypt($data[ 'password' ]), |
|
71 | 71 | ]); |
72 | 72 | } |
73 | 73 | } |
@@ -52,8 +52,8 @@ discard block |
||
52 | 52 | protected function mapWebRoutes() |
53 | 53 | { |
54 | 54 | Route::middleware('web') |
55 | - ->namespace($this->namespace) |
|
56 | - ->group(base_path('routes/web.php')); |
|
55 | + ->namespace($this->namespace) |
|
56 | + ->group(base_path('routes/web.php')); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | /** |
@@ -66,8 +66,8 @@ discard block |
||
66 | 66 | protected function mapApiRoutes() |
67 | 67 | { |
68 | 68 | Route::prefix('api') |
69 | - ->middleware('api') |
|
70 | - ->namespace($this->namespace) |
|
71 | - ->group(base_path('routes/api.php')); |
|
69 | + ->middleware('api') |
|
70 | + ->namespace($this->namespace) |
|
71 | + ->group(base_path('routes/api.php')); |
|
72 | 72 | } |
73 | 73 | } |
@@ -6,5 +6,5 @@ |
||
6 | 6 | |
7 | 7 | class Model extends Eloquent |
8 | 8 | { |
9 | - protected $guarded = []; |
|
9 | + protected $guarded = [ ]; |
|
10 | 10 | } |
@@ -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(route('login')); |