Passed
Push — 5.0.0 ( dd8bc0...b0cec2 )
by Fèvre
05:00
created
app/Livewire/Blog/Comment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
     public function getRowsQueryProperty(): Builder
77 77
     {
78 78
         $query = BlogComment::query()
79
-            ->with('user', )
79
+            ->with('user',)
80 80
             ->where('blog_article_id', $this->article->id);
81 81
 
82 82
         return $this->applySorting($query);
Please login to merge, or discard this patch.
app/View/Components/Textarea.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     /**
38 38
      * Get the view / contents that represent the component.
39 39
      */
40
-    public function render(): View|Closure|string
40
+    public function render(): View | Closure | string
41 41
     {
42 42
         return view('components.textarea');
43 43
     }
Please login to merge, or discard this patch.
app/View/Components/Markdown.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     /**
72 72
      * Get the view / contents that represent the component.
73 73
      */
74
-    public function render(): View|Closure|string
74
+    public function render(): View | Closure | string
75 75
     {
76 76
         return view('components.markdown');
77 77
     }
Please login to merge, or discard this patch.