Completed
Push — master ( 74eb50...86c081 )
by Quim González
03:59
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/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/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/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/Console/Commands/CreateTaskCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
 
52 52
             ]);
53 53
         } catch (Exception $e) {
54
-            $this->error('error'.$e);
54
+            $this->error('error' . $e);
55 55
         }
56 56
 
57 57
         $this->info('Task has been added to database succesfully');
Please login to merge, or discard this patch.
app/Console/Commands/ShowTaskCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
         $id = $this->argument('id') ? $this->argument('id') : $this->askForTasks();
46 46
         $task = Task::findOrFail($id);
47 47
 
48
-        try{
48
+        try {
49 49
 
50 50
             $headers = ['Key', 'Value'];
51 51
             $info = [
@@ -57,9 +57,9 @@  discard block
 block discarded – undo
57 57
 
58 58
 
59 59
             ];
60
-            $this->table($headers,$info);
60
+            $this->table($headers, $info);
61 61
 
62
-        }catch(Exception $e){
62
+        } catch (Exception $e) {
63 63
 
64 64
             $this->error('error' . $e);
65 65
         }
Please login to merge, or discard this patch.
app/Console/Commands/EditTaskCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,14 +46,14 @@
 block discarded – undo
46 46
 
47 47
         $task = Task::findOrFail($id);
48 48
 
49
-        try{
49
+        try {
50 50
             $task->update([
51 51
                 'name'        => $this->argument('name') ? $this->argument('name') : $this->ask('Task name?'),
52 52
                 'user_id'     => $this->argument('user_id') ? $this->argument('user_id') : $this->ask('User id?'),
53 53
                 'description' => $this->argument('description') ? $this->argument('description') : $this->ask('Task description?'),
54 54
             ]);
55 55
 
56
-        }catch(Exception $e){
56
+        } catch (Exception $e) {
57 57
             $this->error('error' . $e);
58 58
         }
59 59
         $this->info('Task has been edited succesfully');
Please login to merge, or discard this patch.
app/helpers.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 //funció creada per veure si el rol ja te assignat un permís, si el te no fem res, sino li assignem.
9 9
 // si no es fa així provoca error:
10 10
 //Illuminate\Database\QueryException with message 'SQLSTATE[23000]: Integrity constraint violation: 19 UNIQUE constraint failed: role_has_permissions.permission_id, role_has_permissions.role_id (SQL: insert into "role_has_permissions" ("permission_id", "role_id") values (1, 1))'
11
-if (!function_exists('assignPermission')) {
11
+if ( ! function_exists('assignPermission')) {
12 12
 
13 13
     /**
14 14
      * @param $role
@@ -16,13 +16,13 @@  discard block
 block discarded – undo
16 16
      */
17 17
     function assignPermission($role, $permission)
18 18
     {
19
-        if (!$role->hasPermissionTo($permission)) {
19
+        if ( ! $role->hasPermissionTo($permission)) {
20 20
             $role->givePermissionTo($permission);
21 21
         }
22 22
     }
23 23
 }
24 24
 
25
-if (!function_exists('initialize_task_permissions')) {
25
+if ( ! function_exists('initialize_task_permissions')) {
26 26
     function initialize_task_permissions()
27 27
     {
28 28
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     }
58 58
 }
59 59
 
60
-if (!function_exists('create_user')) {
60
+if ( ! function_exists('create_user')) {
61 61
     function create_user()
62 62
     {
63 63
         factory(User::class)->create([
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     }
77 77
 }
78 78
 
79
-if (!function_exists('first_user_as_task_manager')) {
79
+if ( ! function_exists('first_user_as_task_manager')) {
80 80
     function first_user_as_task_manager()
81 81
     {
82 82
 
Please login to merge, or discard this patch.