Passed
Push — master ( ceccb9...60253b )
by Quim González
14:04
created
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.
app/Http/Controllers/TaskController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
      */
88 88
     public function update(Request $request, Task $task)
89 89
     {
90
-        $task->update($request->only([ 'name', 'user_id', 'description']));
90
+        $task->update($request->only(['name', 'user_id', 'description']));
91 91
         return Redirect::to("/tasks_php/edit/$task->id");
92 92
     }
93 93
 
Please login to merge, or discard this patch.