Passed
Push — fix/long_page_title ( 03e304 )
by
unknown
11:03
created
src/Fields/Types/DocumentField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Thinktomorrow\Chief\Fields\Types;
5 5
 
Please login to merge, or discard this patch.
src/Fields/Types/InputField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Thinktomorrow\Chief\Fields\Types;
5 5
 
Please login to merge, or discard this patch.
src/Fields/Types/RadioField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Thinktomorrow\Chief\Fields\Types;
5 5
 
Please login to merge, or discard this patch.
src/Fields/Types/TextField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Thinktomorrow\Chief\Fields\Types;
5 5
 
Please login to merge, or discard this patch.
src/Management/Details/Sections.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
     public function __toString()
66 66
     {
67
-        return (string) $this->get('key');
67
+        return (string)$this->get('key');
68 68
     }
69 69
 
70 70
     /**
Please login to merge, or discard this patch.
src/PageBuilder/PresentSections.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
             $this->addModelToCollection($i, $child);
79 79
         }
80 80
 
81
-        return $this->sets->values()->map(function (ViewableContract $child) {
81
+        return $this->sets->values()->map(function(ViewableContract $child) {
82 82
             return ($this->withSnippets && method_exists($child, 'withSnippets'))
83 83
                 ? $child->withSnippets()->setViewParent($this->parent)->renderView()
84 84
                 : $child->setViewParent($this->parent)->renderView();
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     {
96 96
         // Only published pages you fool!
97 97
         // TODO: check for assistant instead of method existence
98
-        if (method_exists($model, 'isPublished') && ! $model->isPublished()) {
98
+        if (method_exists($model, 'isPublished') && !$model->isPublished()) {
99 99
             return;
100 100
         }
101 101
 
Please login to merge, or discard this patch.
src/Pages/PageManager.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -87,11 +87,11 @@
 block discarded – undo
87 87
         return parent::fields()->add(
88 88
             $this->pageBuilderField(),
89 89
             InputField::make('title')->translatable($this->model->availableLocales())
90
-                                     ->validation('required-fallback-locale|max:200', [], [
91
-                                         'trans.'.config('app.fallback_locale', 'nl').'.title' => 'title',
92
-                                     ])
93
-                                     ->label('De titel van je '.$this->model->labelSingular ?? 'pagina')
94
-                                     ->description('Dit is de titel die zal worden getoond in de overzichten en modules.'),
90
+                                        ->validation('required-fallback-locale|max:200', [], [
91
+                                            'trans.'.config('app.fallback_locale', 'nl').'.title' => 'title',
92
+                                        ])
93
+                                        ->label('De titel van je '.$this->model->labelSingular ?? 'pagina')
94
+                                        ->description('Dit is de titel die zal worden getoond in de overzichten en modules.'),
95 95
             InputField::make('seo_title')
96 96
                 ->translatable($this->model->availableLocales())
97 97
                 ->label('Zoekmachine titel'),
Please login to merge, or discard this 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/Sets/Set.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
         // If no view has been created for this page collection, we try once again to fetch the content value if any. This will silently fail
48 48
         // if no content value is present. We don't consider the 'content' attribute to be a default as we do for module.
49
-        return $this->map(function ($item) {
49
+        return $this->map(function($item) {
50 50
             return ($this->viewParent && $item instanceof ViewableContract)
51 51
                 ? $item->setViewParent($this->viewParent)->renderView()
52 52
                 : ($item->content ?? '');
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     {
80 80
         $currentPage = $currentPage ?? request()->get('page', 1);
81 81
         $path = request()->path();
82
-        $items = array_slice($this->all(), ($currentPage - 1) * $perPage);
82
+        $items = array_slice($this->all(), ($currentPage-1) * $perPage);
83 83
 
84 84
         return (new \Illuminate\Pagination\Paginator($items, $perPage, $currentPage))->setPath($path);
85 85
     }
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     {
97 97
         $currentPage = $currentPage ?? request()->get('page', 1);
98 98
         $path = request()->path();
99
-        $items = array_slice($this->all(), ($currentPage - 1) * $perPage, $perPage);
99
+        $items = array_slice($this->all(), ($currentPage-1) * $perPage, $perPage);
100 100
 
101 101
         return (new \Illuminate\Pagination\LengthAwarePaginator($items, $this->count(), $perPage, $currentPage))->setPath($path);
102 102
     }
Please login to merge, or discard this patch.
src/Urls/UrlRecord.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,12 +112,12 @@
 block discarded – undo
112 112
             $builder->where('locale', $locale);
113 113
         }
114 114
 
115
-        if (! $includeRedirects) {
115
+        if (!$includeRedirects) {
116 116
             $builder->whereNull('redirect_id');
117 117
         }
118 118
 
119 119
         if ($ignoredModel) {
120
-            $builder->whereNotIn('id', function ($query) use ($ignoredModel) {
120
+            $builder->whereNotIn('id', function($query) use ($ignoredModel) {
121 121
                 $query->select('id')
122 122
                       ->from('chief_urls')
123 123
                       ->where('model_type', '=', $ignoredModel->getMorphClass())
Please login to merge, or discard this patch.
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -65,8 +65,8 @@  discard block
 block discarded – undo
65 65
     public static function getByModel(Model $model)
66 66
     {
67 67
         return static::where('model_type', $model->getMorphClass())
68
-                     ->where('model_id', $model->id)
69
-                     ->get();
68
+                        ->where('model_id', $model->id)
69
+                        ->get();
70 70
     }
71 71
 
72 72
     public static function findRecentRedirect(Model $model, string $locale): ?self
@@ -134,9 +134,9 @@  discard block
 block discarded – undo
134 134
         if ($ignoredModel) {
135 135
             $builder->whereNotIn('id', function ($query) use ($ignoredModel) {
136 136
                 $query->select('id')
137
-                      ->from('chief_urls')
138
-                      ->where('model_type', '=', $ignoredModel->getMorphClass())
139
-                      ->where('model_id', '=', $ignoredModel->id);
137
+                        ->from('chief_urls')
138
+                        ->where('model_type', '=', $ignoredModel->getMorphClass())
139
+                        ->where('model_id', '=', $ignoredModel->id);
140 140
             });
141 141
         }
142 142
 
Please login to merge, or discard this patch.