Completed
Push — discuss ( f446e4...788d21 )
by Fèvre
08:47
created
app/Http/Controllers/Discuss/ConversationController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,6 +115,6 @@
 block discarded – undo
115 115
      */
116 116
     protected function getCurrentPage(Request $request): int
117 117
     {
118
-        return !is_null($request->get('page')) ? (int)$request->get('page') : 1;
118
+        return !is_null($request->get('page')) ? (int) $request->get('page') : 1;
119 119
     }
120 120
 }
Please login to merge, or discard this patch.
app/Http/Controllers/Discuss/CategoryController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 
41 41
         $breadcrumbs = $this->breadcrumbs->addCrumb(
42 42
             e($category->title),
43
-            route('discuss.category.show', ['slug' => $category->slug,'id' => $category->getKey()])
43
+            route('discuss.category.show', ['slug' => $category->slug, 'id' => $category->getKey()])
44 44
         );
45 45
 
46 46
         return view('Discuss::category.show', compact('breadcrumbs', 'conversations', 'category'));
Please login to merge, or discard this patch.