Passed
Push — master ( 6a0909...f15996 )
by Quim González
04:06
created
app/helpers.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 
8 8
 //si no esta declarada (function_exists('nom_funcio')) la declaro
9 9
 
10
-if (!function_exists('initialize_task_permissions')) {
10
+if ( ! function_exists('initialize_task_permissions')) {
11 11
     function initialize_task_permissions()
12 12
     {
13 13
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     }
28 28
 }
29 29
 
30
-if (!function_exists('create_user')) {
30
+if ( ! function_exists('create_user')) {
31 31
     function create_user()
32 32
     {
33 33
         factory(User::class)->create([
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     }
39 39
 }
40 40
 
41
-if (!function_exists('first_user_as_task_manager')) {
41
+if ( ! function_exists('first_user_as_task_manager')) {
42 42
     function first_user_as_task_manager()
43 43
     {
44 44
         User::all()->first()->assignRole('task-manager');
Please login to merge, or discard this patch.