Test Setup Failed
Push — a-simpler-manager ( 45ff68...0b86bc )
by Ben
06:29
created
src/Settings/SettingFieldsManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,8 @@
 block discarded – undo
51 51
 
52 52
     public function editFields(): Fields
53 53
     {
54
-        return $this->fields()->map(function (Field $field) {
55
-            return $field->valueResolver(function ($model = null, $locale = null, $field) {
54
+        return $this->fields()->map(function(Field $field) {
55
+            return $field->valueResolver(function($model = null, $locale = null, $field) {
56 56
                 return $this->settings->get($field->getKey(), $locale);
57 57
             });
58 58
         });
Please login to merge, or discard this patch.
src/Fields/Types/ImageField.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     {
21 21
         return (new static(new FieldType(FieldType::IMAGE), $key))
22 22
             ->locales([config('app.fallback_locale', 'nl')])
23
-            ->valueResolver(function ($model = null, $locale = null, ImageField $field) {
23
+            ->valueResolver(function($model = null, $locale = null, ImageField $field) {
24 24
                 return $field->getMedia($model, $locale);
25 25
             });
26 26
     }
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         $images = [];
40 40
         $locale = $locale ?? app()->getLocale();
41 41
 
42
-        $assets = $model->assetRelation->where('pivot.type', $this->getKey())->filter(function ($asset) use ($locale) {
42
+        $assets = $model->assetRelation->where('pivot.type', $this->getKey())->filter(function($asset) use ($locale) {
43 43
             return $asset->pivot->locale == $locale;
44 44
         })->sortBy('pivot.order');
45 45
 
Please login to merge, or discard this patch.
src/Fields/Types/AbstractField.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
      */
264 264
     private function defaultEloquentValueResolver(): \Closure
265 265
     {
266
-        return function (Model $model = null, $locale = null) {
266
+        return function(Model $model = null, $locale = null) {
267 267
             if ($this->value) {
268 268
                 return $this->value;
269 269
             }
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
 
421 421
         return $this->isLocalized()
422 422
             ? 'chief::back._formgroups.fieldgroup_translatable'
423
-            : 'chief::back._fields.' . $this->type->get();
423
+            : 'chief::back._fields.'.$this->type->get();
424 424
     }
425 425
 
426 426
     public function viewData(array $viewData = []): Field
Please login to merge, or discard this patch.
src/Fields/Types/FileField.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     {
22 22
         return (new static(new FieldType(FieldType::FILE), $key))
23 23
             ->locales([config('app.fallback_locale', 'nl')])
24
-            ->valueResolver(function ($model = null, $locale = null, FileField $field) {
24
+            ->valueResolver(function($model = null, $locale = null, FileField $field) {
25 25
                 return $field->getMedia($model, $locale);
26 26
             });
27 27
     }
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         $files = [];
36 36
         $locale = $locale ?? app()->getLocale();
37 37
 
38
-        $assets = $model->assetRelation->where('pivot.type', $this->getKey())->filter(function ($asset) use ($locale) {
38
+        $assets = $model->assetRelation->where('pivot.type', $this->getKey())->filter(function($asset) use ($locale) {
39 39
             return $asset->pivot->locale == $locale;
40 40
         })->sortBy('pivot.order');
41 41
 
Please login to merge, or discard this patch.
src/Fields/FieldRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 
27 27
         if ($reference->hasFragmentKey()) {
28 28
             if (!$field instanceof FragmentField) {
29
-                throw new \RuntimeException('Field ' . $field->getKey() . ' was expected to be a fragmentfield but its not.');
29
+                throw new \RuntimeException('Field '.$field->getKey().' was expected to be a fragmentfield but its not.');
30 30
             }
31 31
 
32 32
             $firstFragment = $field->getFragments()[0];
Please login to merge, or discard this patch.
src/Fields/Types/FieldType.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -6,19 +6,19 @@
 block discarded – undo
6 6
 
7 7
 class FieldType
8 8
 {
9
-    const INPUT = 'input';   // oneliner text (input)
10
-    const TEXT = 'text';    // Plain text (textarea)
9
+    const INPUT = 'input'; // oneliner text (input)
10
+    const TEXT = 'text'; // Plain text (textarea)
11 11
     const NUMBER = 'number'; // number
12 12
     const RANGE = 'range'; // range slider
13
-    const DATE = 'date';    // Timestamp input
14
-    const PHONENUMBER = 'phonenumber';    // Timestamp input
15
-    const HTML = 'html';    // Html text (wysiwyg)
16
-    const SELECT = 'select';  // Select options
17
-    const FILE = 'file';  // regular file
18
-    const IMAGE = 'image';  // image (slim uploader)
19
-    const RADIO = 'radio';  // radio select
20
-    const CHECKBOX = 'checkbox';  // checkbox select
21
-    const PAGEBUILDER = 'pagebuilder';  // the most special field there is...
13
+    const DATE = 'date'; // Timestamp input
14
+    const PHONENUMBER = 'phonenumber'; // Timestamp input
15
+    const HTML = 'html'; // Html text (wysiwyg)
16
+    const SELECT = 'select'; // Select options
17
+    const FILE = 'file'; // regular file
18
+    const IMAGE = 'image'; // image (slim uploader)
19
+    const RADIO = 'radio'; // radio select
20
+    const CHECKBOX = 'checkbox'; // checkbox select
21
+    const PAGEBUILDER = 'pagebuilder'; // the most special field there is...
22 22
     const FRAGMENT = 'fragment';
23 23
     const PAGE = 'page'; // select a page (also a special field)
24 24
 
Please login to merge, or discard this patch.
src/System/HealthMonitor/Checks/HomepageAccessibleCheck.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
     public function message(): string
35 35
     {
36
-        return 'Het lijkt erop dat de homepagina niet meer bereikbaar is. <a href="' . route('chief.back.settings.edit') . '" class="text-secondary-800 underline hover:text-white">Kies een nieuwe</a>.';
36
+        return 'Het lijkt erop dat de homepagina niet meer bereikbaar is. <a href="'.route('chief.back.settings.edit').'" class="text-secondary-800 underline hover:text-white">Kies een nieuwe</a>.';
37 37
     }
38 38
 
39 39
     public function notifiers(): array
Please login to merge, or discard this patch.
src/System/HealthMonitor/Checks/HomepageSetCheck.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 
17 17
     public function message(): string
18 18
     {
19
-        return 'Het lijkt erop dat er geen homepagina ingesteld is. Stel er een in hier: <a href="' . route('chief.back.settings.edit') . '" class="text-secondary-800 underline hover:text-white">Settings</a>';
19
+        return 'Het lijkt erop dat er geen homepagina ingesteld is. Stel er een in hier: <a href="'.route('chief.back.settings.edit').'" class="text-secondary-800 underline hover:text-white">Settings</a>';
20 20
     }
21 21
 
22 22
     public function notifiers(): array
Please login to merge, or discard this patch.
src/System/HealthMonitor/Monitor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
                 }
33 33
 
34 34
                 return;
35
-            } else {
35
+            }else {
36 36
                 foreach ($notifiers as $notifier) {
37 37
                     app($notifier)->onSuccess($checkInstance);
38 38
                 }
Please login to merge, or discard this patch.