Passed
Push — 5.0.0 ( 49e1c0...87aae2 )
by Fèvre
06:22
created
app/Livewire/Forms/BlogArticleForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
      *
70 70
      * @var Collection|array
71 71
      */
72
-    public Collection|array $categoriesSearchable = [];
72
+    public Collection | array $categoriesSearchable = [];
73 73
 
74 74
     /**
75 75
      * Function to store the model.
Please login to merge, or discard this patch.
app/Livewire/Admin/Blog/Article.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
         'created_at'
82 82
     ];
83 83
 
84
-    public function render(): View|Application|Factory|\Illuminate\View\View
84
+    public function render(): View | Application | Factory | \Illuminate\View\View
85 85
     {
86 86
         return view('livewire.admin.blog.article', [
87 87
             'articles' => $this->rows
Please login to merge, or discard this patch.
app/Http/Controllers/DownloadsController.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
      */
18 18
     public function download(string $fileName)
19 19
     {
20
-        $filePath = public_path('files/'.$fileName);
20
+        $filePath = public_path('files/' . $fileName);
21 21
 
22 22
         return response()->download($filePath);
23 23
     }
Please login to merge, or discard this patch.
app/View/Components/DatePicker.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
             //'altInputClass' => ' ',
56 56
             'allowInput' => true,
57 57
             'time_24hr' => true,
58
-            'clickOpens' => ! $this->attributes->has('readonly') || $this->attributes->get('readonly') === false,
58
+            'clickOpens' => !$this->attributes->has('readonly') || $this->attributes->get('readonly') === false,
59 59
             'defaultDate' => '#model#',
60 60
             'plugins' => ['#plugins#'],
61 61
             'disable' => ['#disable#'],
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
     /**
107 107
      * Get the view / contents that represent the component.
108 108
      */
109
-    public function render(): View|Closure|string
109
+    public function render(): View | Closure | string
110 110
     {
111 111
         return view('components.date-picker');
112 112
     }
Please login to merge, or discard this patch.