Passed
Pull Request — master (#4)
by Quim González
03:52
created
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([
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     }
69 69
 }
70 70
 
71
-if (!function_exists('first_user_as_task_manager')) {
71
+if ( ! function_exists('first_user_as_task_manager')) {
72 72
     function first_user_as_task_manager()
73 73
     {
74 74
         User::all()->first()->assignRole('task-manager');
Please login to merge, or discard this patch.
app/Console/Commands/EditTaskCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
                 'description' => $this->argument('description') ? $this->argument('description') : $this->ask('Task description?'),
54 54
             ]);
55 55
         } catch (Exception $e) {
56
-            $this->error('error'.$e);
56
+            $this->error('error' . $e);
57 57
         }
58 58
         $this->info('Task has been edited succesfully');
59 59
     }
Please login to merge, or discard this patch.
app/Console/Commands/ShowTaskCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
             ];
57 57
             $this->table($headers, $info);
58 58
         } catch (Exception $e) {
59
-            $this->error('error'.$e);
59
+            $this->error('error' . $e);
60 60
         }
61 61
     }
62 62
 }
Please login to merge, or discard this patch.