Passed
Push — master ( 243c10...a54c21 )
by Quim González
02:51
created
app/Console/Kernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      */
36 36
     protected function commands()
37 37
     {
38
-        $this->load(__DIR__.'/Commands');
38
+        $this->load(__DIR__ . '/Commands');
39 39
 
40 40
         require base_path('routes/console.php');
41 41
     }
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Console/Commands/ListTaskCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
 
48 48
             $this->table($headers, $tasks);
49 49
         } catch (exception $e) {
50
-            $this->error('Error: '.$e);
50
+            $this->error('Error: ' . $e);
51 51
         }
52 52
     }
53 53
 }
Please login to merge, or discard this patch.
app/Console/Commands/CreateTaskCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
                 'name'=> $this->argument('name') ? $this->argument('name') : $this->ask('Event name?'),
50 50
             ]);
51 51
         } catch (Exception $e) {
52
-            $this->error('error'.$e);
52
+            $this->error('error' . $e);
53 53
         }
54 54
 
55 55
         $this->info('Task has been added to database succesfully');
Please login to merge, or discard this patch.
app/Console/Commands/DestroyTaskCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,11 +48,11 @@
 block discarded – undo
48 48
 //
49 49
 //            ]);
50 50
         } catch (Exception $e) {
51
-            $this->error('error'.$e);
51
+            $this->error('error' . $e);
52 52
         }
53 53
         if ($count == 0) {
54 54
             $this->alert('Task does not exist');
55
-        } else {
55
+        }else {
56 56
             $this->info('Task has been deleted to database succesfully');
57 57
         }
58 58
     }
Please login to merge, or discard this patch.
app/Http/Controllers/ApiUserController.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -21,17 +21,17 @@
 block discarded – undo
21 21
     public function store(Request $request)
22 22
     {
23 23
         $request->validate([
24
-           'name'     => 'required|max:255',
25
-           'username' => 'sometimes|required|max:255|unique:users',
26
-           'email'    => 'required|email|max:255|unique:users',
27
-           'password' => 'required|min:6',
24
+            'name'     => 'required|max:255',
25
+            'username' => 'sometimes|required|max:255|unique:users',
26
+            'email'    => 'required|email|max:255|unique:users',
27
+            'password' => 'required|min:6',
28 28
         ]);
29 29
 
30 30
         $user = User::create([
31
-               'name'     => $request->name,
32
-               'username' => $request->username,
33
-               'email'    => $request->email,
34
-               'password' => bcrypt($request->password),
31
+                'name'     => $request->name,
32
+                'username' => $request->username,
33
+                'email'    => $request->email,
34
+                'password' => bcrypt($request->password),
35 35
             ]);
36 36
 
37 37
         return $user;
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/LoginController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
         if ($this->username() === 'email') {
73 73
             return $this->attemptLoginAtAuthenticatesUsers($request);
74 74
         }
75
-        if (!$this->attemptLoginAtAuthenticatesUsers($request)) {
75
+        if ( ! $this->attemptLoginAtAuthenticatesUsers($request)) {
76 76
             return $this->attempLoginUsingUsernameAsAnEmail($request);
77 77
         }
78 78
 
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/ResetPasswordController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         // will update the password on an actual user model and persist it to the
39 39
         // database. Otherwise we will parse the error and return the response.
40 40
         $response = $this->broker()->reset(
41
-            $this->credentials($request), function ($user, $password) {
41
+            $this->credentials($request), function($user, $password) {
42 42
                 $this->resetPassword($user, $password);
43 43
             }
44 44
         );
Please login to merge, or discard this patch.
app/Http/Requests/UpdateUser.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,9 @@
 block discarded – undo
15 15
      */
16 16
     public function authorize()
17 17
     {
18
-        if ($this->hasPermissionTo('update-users')) return true;
18
+        if ($this->hasPermissionTo('update-users')) {
19
+            return true;
20
+        }
19 21
         return false;
20 22
     }
21 23
 
Please login to merge, or discard this patch.