Completed
Push — master ( fa6dde...ed0074 )
by Mark
02:19
created
app/Mdk/Transformers/TaskTransformer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         return [
18 18
             'name' => $task['name'],
19 19
             'some_bool' => (boolean) $task['done'],
20
-            'priority' => (int)$task['priority'],
20
+            'priority' => (int) $task['priority'],
21 21
 
22 22
         ];
23 23
     }
Please login to merge, or discard this patch.
app/Http/Controllers/TaskController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->taskTransformer = $taskTransformer;
22 22
 
23
-     //   $this->middleware('auth.basic', ['only' => 'store']);
23
+        //   $this->middleware('auth.basic', ['only' => 'store']);
24 24
     }
25 25
 
26 26
     /**
Please login to merge, or discard this patch.
app/Http/Controllers/TagController.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
 
25 25
 
26
-      //  $this->middleware('auth.basic', ['only' => 'store']);
26
+        //  $this->middleware('auth.basic', ['only' => 'store']);
27 27
     }
28 28
 
29 29
     /**
@@ -127,11 +127,11 @@  discard block
 block discarded – undo
127 127
     }
128 128
 
129 129
     /**
130
-    * @param $taskId
131
-    * @return \Illuminate\Database\Eloquent\Collection|static[]
132
-    */
130
+     * @param $taskId
131
+     * @return \Illuminate\Database\Eloquent\Collection|static[]
132
+     */
133 133
     public function getTags($taskId)
134
-     {
135
-         return $taskId ? Task::findOrFail($taskId)->tags : Tag::all();
136
-     }
134
+        {
135
+            return $taskId ? Task::findOrFail($taskId)->tags : Tag::all();
136
+        }
137 137
 }
138 138
\ No newline at end of file
Please login to merge, or discard this patch.