Passed
Push — 5.0.0 ( ae03fe...9fcb89 )
by Fèvre
05:56
created
app/View/Components/Icon.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
         $this->uuid = md5(serialize($this));
20 20
     }
21 21
 
22
-    public function icon(): string|Stringable
22
+    public function icon(): string | Stringable
23 23
     {
24 24
         $name = Str::of($this->name);
25 25
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     /**
36 36
      * Get the view / contents that represent the component.
37 37
      */
38
-    public function render(): View|Closure|string
38
+    public function render(): View | Closure | string
39 39
     {
40 40
         return view('components.icon');
41 41
     }
Please login to merge, or discard this patch.
app/View/Components/Form.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     /**
24 24
      * Get the view / contents that represent the component.
25 25
      */
26
-    public function render(): View|Closure|string
26
+    public function render(): View | Closure | string
27 27
     {
28 28
         return view('components.form');
29 29
     }
Please login to merge, or discard this patch.
app/View/Components/Input.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
     /**
63 63
      * Get the view / contents that represent the component.
64 64
      */
65
-    public function render(): View|Closure|string
65
+    public function render(): View | Closure | string
66 66
     {
67 67
         return view('components.input');
68 68
     }
Please login to merge, or discard this patch.