Completed
Push — master ( 1da32b...357d44 )
by Eric
03:03
created
app/helpers.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 use Spatie\Permission\Models\Permission;
4 4
 use Spatie\Permission\Models\Role;
5 5
 
6
-if (!function_exists('initialize_task_permission')) {
6
+if ( ! function_exists('initialize_task_permission')) {
7 7
     function initialize_task_permissions()
8 8
     {
9 9
         Permission::firstOrCreate(['name' => 'list-tasks']);
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     }
23 23
 }
24 24
 
25
-if (!function_exists('create_user')) {
25
+if ( ! function_exists('create_user')) {
26 26
     function create_user()
27 27
     {
28 28
         factory(User::class)->create([
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     }
34 34
 }
35 35
 
36
-if (!function_exists('first_user_as_task_manager')) {
36
+if ( ! function_exists('first_user_as_task_manager')) {
37 37
     function first_user_as_task_manager()
38 38
     {
39 39
         User::all()->first()->assignRole('task-manager');
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/Controllers/TaskController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
         $tasks = Task::all();
24 24
         $users = User::all();
25 25
 
26
-        return view('tasks_php', ['tasks' => $tasks,'users' => $users]);
26
+        return view('tasks_php', ['tasks' => $tasks, 'users' => $users]);
27 27
 
28 28
     }
29 29
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      */
95 95
     public function update(UpdateTask $request, Task $task)
96 96
     {
97
-        $task->update($request->only(['name','user_id']));
97
+        $task->update($request->only(['name', 'user_id']));
98 98
 
99 99
         Session::flash('status', 'Edited ok!');
100 100
         return Redirect::to('/tasks_php/edit/'.$task->id);
Please login to merge, or discard this patch.