Test Failed
Push — 0.3 ( 28dbea...496690 )
by
unknown
09:43 queued 02:42
created
src/Pages/PageManager.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -61,15 +61,15 @@  discard block
 block discarded – undo
61 61
     {
62 62
         $permission = 'update-page';
63 63
 
64
-        if (in_array($verb, ['index','show'])) {
64
+        if (in_array($verb, ['index', 'show'])) {
65 65
             $permission = 'view-page';
66
-        } elseif (in_array($verb, ['create','store'])) {
66
+        } elseif (in_array($verb, ['create', 'store'])) {
67 67
             $permission = 'create-page';
68 68
         } elseif (in_array($verb, ['delete'])) {
69 69
             $permission = 'delete-page';
70 70
         }
71 71
 
72
-        if (! auth()->guard('chief')->user()->hasPermissionTo($permission)) {
72
+        if (!auth()->guard('chief')->user()->hasPermissionTo($permission)) {
73 73
             throw NotAllowedManagerRoute::notAllowedPermission($permission, $this);
74 74
         }
75 75
     }
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
     public function fieldArrangement($key = null): FieldArrangement
132 132
     {
133 133
         if ($key == 'create') {
134
-            return new FieldArrangement($this->fieldsWithAssistantFields()->filterBy(function ($field) {
134
+            return new FieldArrangement($this->fieldsWithAssistantFields()->filterBy(function($field) {
135 135
                 return in_array($field->key, ['title']);
136 136
             }));
137 137
         }
@@ -153,8 +153,8 @@  discard block
 block discarded – undo
153 153
         if ($this->model->id) {
154 154
             return parent::details()
155 155
                 ->set('title', ucfirst($this->model->title))
156
-                ->set('intro', 'Aangepast ' . $this->model->updated_at->format('d/m/Y H:i'))
157
-                ->set('context', '<span class="inline-xs stack-s">' . $this->assistant('publish')->publicationStatusAsLabel() . '</span>');
156
+                ->set('intro', 'Aangepast '.$this->model->updated_at->format('d/m/Y H:i'))
157
+                ->set('context', '<span class="inline-xs stack-s">'.$this->assistant('publish')->publicationStatusAsLabel().'</span>');
158 158
         }
159 159
 
160 160
         return parent::details();
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
     public function saveFields(Request $request)
164 164
     {
165 165
         // Store the morph_key upon creation
166
-        if ($this->model instanceof MorphableContract && ! $this->model->morph_key) {
166
+        if ($this->model instanceof MorphableContract && !$this->model->morph_key) {
167 167
             $this->model->morph_key = $this->model->morphKey();
168 168
         }
169 169
 
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
             if (is_array_empty($translation)) {
209 209
 
210 210
                 // Nullify all values
211
-                $trans[$locale] = array_map(function ($value) {
211
+                $trans[$locale] = array_map(function($value) {
212 212
                     return null;
213 213
                 }, $translation);
214 214
                 continue;
Please login to merge, or discard this patch.