Passed
Push — fix/radiobuttonstyling ( e57dd3...53f350 )
by Ben
15:46 queued 08:51
created
src/HealthMonitor/Checks/HomepageAccessibleCheck.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Thinktomorrow\Chief\HealthMonitor\Checks;
6 6
 
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 
17 17
     private function get_http_response_code(string $url)
18 18
     {
19
-        if ($url =='') {
19
+        if ($url == '') {
20 20
             return false;
21 21
         }
22 22
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     public function message(): string
36 36
     {
37
-        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
+        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>.';
38 38
     }
39 39
 
40 40
     public function notifiers(): array
Please login to merge, or discard this patch.
src/HealthMonitor/Checks/HomepageSetCheck.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Thinktomorrow\Chief\HealthMonitor\Checks;
6 6
 
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
     public function message(): string
20 20
     {
21
-        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>';
21
+        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>';
22 22
     }
23 23
 
24 24
     public function notifiers(): array
Please login to merge, or discard this patch.
src/HealthMonitor/Monitor.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Thinktomorrow\Chief\HealthMonitor;
6 6
 
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
         foreach ($this->checks as $check) {
23 23
             $checkInstance = app($check);
24 24
             
25
-            if (! $checkInstance instanceof HealthCheck) {
25
+            if (!$checkInstance instanceof HealthCheck) {
26 26
                 throw new InvalidClassException('Checks must implement Healthcheck interface.');
27 27
             }
28 28
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
                     app($notifier)->onFailure($checkInstance);
34 34
                 }
35 35
                 return;
36
-            } else {
36
+            }else {
37 37
                 foreach ($notifiers as $notifier) {
38 38
                     app($notifier)->onSuccess($checkInstance);
39 39
                 }
Please login to merge, or discard this patch.
src/Pages/PageManager.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -62,15 +62,15 @@  discard block
 block discarded – undo
62 62
     {
63 63
         $permission = 'update-page';
64 64
 
65
-        if (in_array($verb, ['index','show'])) {
65
+        if (in_array($verb, ['index', 'show'])) {
66 66
             $permission = 'view-page';
67
-        } elseif (in_array($verb, ['create','store'])) {
67
+        } elseif (in_array($verb, ['create', 'store'])) {
68 68
             $permission = 'create-page';
69 69
         } elseif (in_array($verb, ['delete'])) {
70 70
             $permission = 'delete-page';
71 71
         }
72 72
 
73
-        if (! auth()->guard('chief')->user()->hasPermissionTo($permission)) {
73
+        if (!auth()->guard('chief')->user()->hasPermissionTo($permission)) {
74 74
             throw NotAllowedManagerRoute::notAllowedPermission($permission, $this);
75 75
         }
76 76
     }
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     public function fieldArrangement($key = null): FieldArrangement
133 133
     {
134 134
         if ($key == 'create') {
135
-            return new FieldArrangement($this->fieldsWithAssistantFields()->filterBy(function ($field) {
135
+            return new FieldArrangement($this->fieldsWithAssistantFields()->filterBy(function($field) {
136 136
                 return in_array($field->key, ['title']);
137 137
             }));
138 138
         }
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
             new FieldsTab('seo', ['seo_title', 'seo_description', 'seo_keywords', 'seo_image']),
147 147
         ];
148 148
 
149
-        if (! Module::available()->values()->isEmpty()) {
149
+        if (!Module::available()->values()->isEmpty()) {
150 150
             array_splice($tabs, 1, 0, [new FieldsTab('modules', [], 'chief::back.pages._partials.modules')]);
151 151
         }
152 152
 
@@ -159,8 +159,8 @@  discard block
 block discarded – undo
159 159
         if ($this->model->id) {
160 160
             return parent::details()
161 161
                 ->set('title', ucfirst($this->model->title))
162
-                ->set('intro', 'Aangepast ' . $this->model->updated_at->format('d/m/Y H:i'))
163
-                ->set('context', '<span class="inline-xs stack-s">' . $this->assistant('publish')->publicationStatusAsLabel() . '</span>');
162
+                ->set('intro', 'Aangepast '.$this->model->updated_at->format('d/m/Y H:i'))
163
+                ->set('context', '<span class="inline-xs stack-s">'.$this->assistant('publish')->publicationStatusAsLabel().'</span>');
164 164
         }
165 165
 
166 166
         return parent::details();
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
     public function saveFields(Request $request)
170 170
     {
171 171
         // Store the morph_key upon creation
172
-        if ($this->model instanceof MorphableContract && ! $this->model->morph_key) {
172
+        if ($this->model instanceof MorphableContract && !$this->model->morph_key) {
173 173
             $this->model->morph_key = $this->model->morphKey();
174 174
         }
175 175
 
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
             if (is_array_empty($translation)) {
215 215
 
216 216
                 // Nullify all values
217
-                $trans[$locale] = array_map(function ($value) {
217
+                $trans[$locale] = array_map(function($value) {
218 218
                     return null;
219 219
                 }, $translation);
220 220
                 continue;
Please login to merge, or discard this patch.
src/Management/ManagesPagebuilder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
         $availableChildren = AvailableChildren::forParent($model);
51 51
 
52
-        $modules = $availableChildren->onlyModules()->reject(function ($module) use ($model) {
52
+        $modules = $availableChildren->onlyModules()->reject(function($module) use ($model) {
53 53
             return $module->page_id != null && $module->page_id != $model->id;
54 54
         });
55 55
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         $available_sets = FlatReferencePresenter::toGroupedSelectValues($availableChildren->onlySets())->toArray();
59 59
 
60 60
         // Current sections
61
-        $sections = $model->children()->map(function ($section, $index) {
61
+        $sections = $model->children()->map(function($section, $index) {
62 62
             if ($section instanceof TranslatableContract) {
63 63
                 $section->injectTranslationForForm();
64 64
             }
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      */
93 93
     private function findEditUrl($model): ?string
94 94
     {
95
-        if (! $model instanceof ManagedModel) {
95
+        if (!$model instanceof ManagedModel) {
96 96
             return null;
97 97
         }
98 98
 
Please login to merge, or discard this patch.
src/Modules/Application/DeleteModule.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
             // Mark the slug as deleted to avoid any conflict with newly created modules with the same slug.
23 23
             $module->update([
24
-                'slug' => $module->slug . $this->appendDeleteMarker(),
24
+                'slug' => $module->slug.$this->appendDeleteMarker(),
25 25
             ]);
26 26
 
27 27
             $module->delete();
@@ -35,6 +35,6 @@  discard block
 block discarded – undo
35 35
 
36 36
     private function appendDeleteMarker(): string
37 37
     {
38
-        return '_DELETED_' . time();
38
+        return '_DELETED_'.time();
39 39
     }
40 40
 }
Please login to merge, or discard this patch.
src/Fields/Types/FieldType.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -6,19 +6,19 @@  discard block
 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 MEDIA = 'media';  // media file (slim uploader)
18
-    const DOCUMENT = 'document';  // documents
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 MEDIA = 'media'; // media file (slim uploader)
18
+    const DOCUMENT = 'document'; // documents
19
+    const RADIO = 'radio'; // radio select
20
+    const CHECKBOX = 'checkbox'; // checkbox select
21
+    const PAGEBUILDER = 'pagebuilder'; // the most special field there is...
22 22
 
23 23
     /** @var string */
24 24
     private $type;
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     public static function fromString(string $type): self
39 39
     {
40
-        $class = 'Thinktomorrow\Chief\Fields\Types\\' . ucfirst($type . 'Field');
40
+        $class = 'Thinktomorrow\Chief\Fields\Types\\'.ucfirst($type.'Field');
41 41
 
42 42
         return new $class(new static($type));
43 43
     }
Please login to merge, or discard this patch.