Completed
Push — master ( 4d2666...6cd91c )
by Phecho
06:30 queued 03:12
created
app/Http/Controllers/FeedController.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -22,17 +22,17 @@
 block discarded – undo
22 22
 class FeedController extends Controller
23 23
 {
24 24
     /**
25
-    * Feed facade.
26
-    *
27
-    * @var Roumen\Feed\Facades\Feed
28
-    */
25
+     * Feed facade.
26
+     *
27
+     * @var Roumen\Feed\Facades\Feed
28
+     */
29 29
     private $feed;
30 30
 
31 31
     /**
32
-    * Create a new feed controller instance.
33
-    *
34
-    * @return void
35
-    */
32
+     * Create a new feed controller instance.
33
+     *
34
+     * @return void
35
+     */
36 36
     public function __construct()
37 37
     {
38 38
         $this->feed = Feed::make();
Please login to merge, or discard this patch.
app/Http/Controllers/GroupsController.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -84,11 +84,11 @@
 block discarded – undo
84 84
             ->withSubMenu($this->subMenu);
85 85
     }
86 86
 
87
-     /**
88
-     * Shows the group view.
89
-     *
90
-     * @return \Illuminate\View\View
91
-     */
87
+        /**
88
+         * Shows the group view.
89
+         *
90
+         * @return \Illuminate\View\View
91
+         */
92 92
     public function show($namespace)
93 93
     {
94 94
         $group = Group::where('path', '=', $namespace)->first();
Please login to merge, or discard this patch.