@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | } |
37 | 37 | } |
38 | 38 | |
39 | - return static::$loadedSnippets = new self($files->map(function (SplFileInfo $file) { |
|
39 | + return static::$loadedSnippets = new self($files->map(function(SplFileInfo $file) { |
|
40 | 40 | $path = $file->getRealPath(); |
41 | 41 | |
42 | 42 | if (0 === strpos($path, resource_path('views')) && false !== strpos($file->getBasename(), '.blade.php')) { |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | { |
55 | 55 | $loadedSnippets = static::load(); |
56 | 56 | |
57 | - return $loadedSnippets->first(function (Snippet $snippet) use ($key) { |
|
57 | + return $loadedSnippets->first(function(Snippet $snippet) use ($key) { |
|
58 | 58 | return $snippet->key() == $key; |
59 | 59 | }); |
60 | 60 | } |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | |
86 | 86 | public function toClips(): array |
87 | 87 | { |
88 | - return $this->map(function ($snippet) { |
|
88 | + return $this->map(function($snippet) { |
|
89 | 89 | return [$snippet->label(), $snippet->placeholder()]; |
90 | 90 | })->toArray(); |
91 | 91 | } |
@@ -66,7 +66,7 @@ |
||
66 | 66 | } |
67 | 67 | |
68 | 68 | if (config('thinktomorrow.chief.strict')) { |
69 | - throw new NotFoundViewKey('Missing view key. Please add a [viewKey] property to ' . get_class($this)); |
|
69 | + throw new NotFoundViewKey('Missing view key. Please add a [viewKey] property to '.get_class($this)); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | return ''; |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | */ |
240 | 240 | private function defaultEloquentValueResolver(): \Closure |
241 | 241 | { |
242 | - return function (Model $model = null, $locale = null) { |
|
242 | + return function(Model $model = null, $locale = null) { |
|
243 | 243 | if (!$model) { |
244 | 244 | return $this->value; |
245 | 245 | } |
@@ -400,6 +400,6 @@ discard block |
||
400 | 400 | |
401 | 401 | return $this->isLocalized() |
402 | 402 | ? 'chief::back._fields.translatable' |
403 | - : 'chief::back._fields.' . $this->type->get(); |
|
403 | + : 'chief::back._fields.'.$this->type->get(); |
|
404 | 404 | } |
405 | 405 | } |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | if ($item->ofType(static::TYPE_INTERNAL) && $page = $item->page) { |
104 | 104 | if ($page->isArchived()) { |
105 | 105 | unset($items[$k]); |
106 | - } else { |
|
106 | + }else { |
|
107 | 107 | $item->url = self::composePageUrl($item, $page); |
108 | 108 | $item->page_label = $page->menuLabel(); |
109 | 109 | $item->hidden_in_menu = $page->hidden_in_menu; |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | 'id' => $node->id, |
153 | 153 | 'type' => $node->type, |
154 | 154 | 'label' => $node->label, |
155 | - 'page_label' => $node->page_label, // Extra info when dealing with internal links |
|
155 | + 'page_label' => $node->page_label, // Extra info when dealing with internal links |
|
156 | 156 | 'url' => $node->url, |
157 | 157 | 'order' => $node->order, |
158 | 158 | 'page_id' => $node->page_id, |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | |
62 | 62 | public static function models(bool $onlySingles = false, Model $ignoredModel = null, $online = true) |
63 | 63 | { |
64 | - $models = chiefMemoize('all-online-models', function () use ($onlySingles, $online) { |
|
64 | + $models = chiefMemoize('all-online-models', function() use ($onlySingles, $online) { |
|
65 | 65 | $builder = UrlRecord::whereNull('redirect_id') |
66 | 66 | ->select('model_type', 'model_id') |
67 | 67 | ->groupBy('model_type', 'model_id'); |
@@ -70,11 +70,11 @@ discard block |
||
70 | 70 | $builder->where('model_type', 'singles'); |
71 | 71 | } |
72 | 72 | |
73 | - return $builder->get()->mapToGroups(function ($record) { |
|
73 | + return $builder->get()->mapToGroups(function($record) { |
|
74 | 74 | return [$record->model_type => $record->model_id]; |
75 | - })->map(function ($record, $key) { |
|
75 | + })->map(function($record, $key) { |
|
76 | 76 | return Morphables::instance($key)->find($record->toArray()); |
77 | - })->map->reject(function ($model) use ($online) { |
|
77 | + })->map->reject(function($model) use ($online) { |
|
78 | 78 | if ($online) { |
79 | 79 | return is_null($model) || !$model->isPublished(); |
80 | 80 | } // Invalid references to archived or removed models where url record still exists. |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | }, [$onlySingles]); |
85 | 85 | |
86 | 86 | if ($ignoredModel) { |
87 | - $models = $models->reject(function ($model) use ($ignoredModel) { |
|
87 | + $models = $models->reject(function($model) use ($ignoredModel) { |
|
88 | 88 | return (get_class($model) === get_class($ignoredModel) && $model->id === $ignoredModel->id); |
89 | 89 | }); |
90 | 90 | } |
@@ -14,7 +14,7 @@ |
||
14 | 14 | { |
15 | 15 | public function handle(HasAsset $model, MediaField $field, Request $request): void |
16 | 16 | { |
17 | - foreach ($request->input('images.' . $field->getName(), []) as $locale => $values) { |
|
17 | + foreach ($request->input('images.'.$field->getName(), []) as $locale => $values) { |
|
18 | 18 | $this->handlePayload($model, $field, $locale, $values); |
19 | 19 | } |
20 | 20 |
@@ -14,7 +14,7 @@ |
||
14 | 14 | { |
15 | 15 | public function handle(HasAsset $model, MediaField $field, Request $request): void |
16 | 16 | { |
17 | - foreach ([$request->file('files.' . $field->getName(), []), $request->input('files.' . $field->getName(), [])] as $requestPayload) { |
|
17 | + foreach ([$request->file('files.'.$field->getName(), []), $request->input('files.'.$field->getName(), [])] as $requestPayload) { |
|
18 | 18 | foreach ($requestPayload as $locale => $values) { |
19 | 19 | $this->handlePayload($model, $field, $locale, $values); |
20 | 20 | } |
@@ -28,7 +28,7 @@ |
||
28 | 28 | $files = []; |
29 | 29 | $locale = $locale ?? app()->getLocale(); |
30 | 30 | |
31 | - $assets = $model->assetRelation->where('pivot.type', $this->getKey())->filter(function ($asset) use ($locale) { |
|
31 | + $assets = $model->assetRelation->where('pivot.type', $this->getKey())->filter(function($asset) use ($locale) { |
|
32 | 32 | return $asset->pivot->locale == $locale; |
33 | 33 | })->sortBy('pivot.order'); |
34 | 34 |
@@ -38,7 +38,7 @@ |
||
38 | 38 | private function addCustomValidationMessage($attribute, $params, $validator): void |
39 | 39 | { |
40 | 40 | $validator->setCustomMessages([ |
41 | - 'filefield_dimensions' => ':attribute heeft niet de juiste afmetingen: ' . implode(', ', $params), |
|
41 | + 'filefield_dimensions' => ':attribute heeft niet de juiste afmetingen: '.implode(', ', $params), |
|
42 | 42 | ]); |
43 | 43 | |
44 | 44 | if (!isset($validator->customAttributes[$attribute])) { |