Passed
Push — master ( 567908...d5a2f9 )
by Fèvre
06:56
created
app/Livewire/Admin/Discuss/CreateCategory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
             ->success('Your category has been created successfully !');
67 67
     }
68 68
 
69
-    public function render(): View|Application|Factory|\Illuminate\View\View
69
+    public function render(): View | Application | Factory | \Illuminate\View\View
70 70
     {
71 71
         return view('livewire.admin.discuss.create-category');
72 72
     }
Please login to merge, or discard this patch.
app/Livewire/Admin/Discuss/UpdateCategory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      */
32 32
     public bool $showModal = false;
33 33
 
34
-    public function render(): View|Application|Factory|\Illuminate\View\View
34
+    public function render(): View | Application | Factory | \Illuminate\View\View
35 35
     {
36 36
         return view('livewire.admin.discuss.update-category');
37 37
     }
Please login to merge, or discard this patch.
app/View/Components/ColorPicker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     /**
57 57
      * Get the view / contents that represent the component.
58 58
      */
59
-    public function render(): View|Closure|string
59
+    public function render(): View | Closure | string
60 60
     {
61 61
         return view('components.color-picker');
62 62
     }
Please login to merge, or discard this patch.
app/Livewire/Admin/User/UpdateUser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      */
40 40
     public bool $showModal = false;
41 41
 
42
-    public function render(): View|Application|Factory|\Illuminate\View\View
42
+    public function render(): View | Application | Factory | \Illuminate\View\View
43 43
     {
44 44
         // Select only the roles attached to this site or the roles without assigned site_id.
45 45
         $roles = Role::where('level', '<=', auth()->user()->level)
Please login to merge, or discard this patch.
app/Livewire/Admin/User/User.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
         $this->perPage = config('xetaravel.pagination.user.user_per_page', $this->perPage);
87 87
     }
88 88
 
89
-    public function render(): View|Application|Factory|\Illuminate\View\View
89
+    public function render(): View | Application | Factory | \Illuminate\View\View
90 90
     {
91 91
         return view('livewire.admin.user.user', [
92 92
             'users' => $this->rows
Please login to merge, or discard this patch.
app/Livewire/Admin/Permission/Permission.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
         'created_at'
80 80
     ];
81 81
 
82
-    public function render(): View|Application|Factory|\Illuminate\View\View
82
+    public function render(): View | Application | Factory | \Illuminate\View\View
83 83
     {
84 84
         return view('livewire.admin.permission.permission', [
85 85
             'permissions' => $this->rows
Please login to merge, or discard this patch.
app/Livewire/Admin/Permission/UpdatePermission.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
             ->success('Your permission has been updated successfully !');
72 72
     }
73 73
 
74
-    public function render(): View|Application|Factory|\Illuminate\View\View
74
+    public function render(): View | Application | Factory | \Illuminate\View\View
75 75
     {
76 76
         return view('livewire.admin.permission.update-permission');
77 77
     }
Please login to merge, or discard this patch.
app/Livewire/Admin/Permission/Role.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
         'created_at'
81 81
     ];
82 82
 
83
-    public function render(): View|Application|Factory|\Illuminate\View\View
83
+    public function render(): View | Application | Factory | \Illuminate\View\View
84 84
     {
85 85
         return view('livewire.admin.permission.role', [
86 86
             'roles' => $this->rows
Please login to merge, or discard this patch.
app/Livewire/Admin/Permission/CreatePermission.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
             ->success('Your permission has been created successfully !');
69 69
     }
70 70
 
71
-    public function render(): View|Application|Factory|\Illuminate\View\View
71
+    public function render(): View | Application | Factory | \Illuminate\View\View
72 72
     {
73 73
         return view('livewire.admin.permission.create-permission');
74 74
     }
Please login to merge, or discard this patch.