| @@ -35,7 +35,7 @@ | ||
| 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 | } | 
| @@ -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 | } | 
| @@ -47,7 +47,7 @@ | ||
| 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 | } | 
| @@ -21,17 +21,17 @@ | ||
| 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; | 
| @@ -72,7 +72,7 @@ | ||
| 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 | |
| @@ -38,7 +38,7 @@ | ||
| 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 | ); | 
| @@ -8,7 +8,7 @@ discard block | ||
| 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 | ||
| 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 | ||
| 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 | ||
| 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'); | 
| @@ -51,7 +51,7 @@ | ||
| 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'); | 
| @@ -53,7 +53,7 @@ | ||
| 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 | } |