@@ -21,7 +21,7 @@ discard block |
||
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 |
||
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 |
@@ -26,7 +26,7 @@ |
||
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]; |
@@ -6,19 +6,19 @@ |
||
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 |
@@ -33,7 +33,7 @@ |
||
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 |
@@ -16,7 +16,7 @@ |
||
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 |
@@ -32,7 +32,7 @@ |
||
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 | } |
@@ -36,7 +36,7 @@ |
||
36 | 36 | return; |
37 | 37 | } |
38 | 38 | |
39 | - $availableApplicatorsString = implode(array_map(function ($applicator) { return get_class($applicator);}, $this->applicators), ','); |
|
39 | + $availableApplicatorsString = implode(array_map(function($applicator) { return get_class($applicator); }, $this->applicators), ','); |
|
40 | 40 | |
41 | 41 | throw new \RuntimeException("No proper template applicator found. $sourceClassName [$sourceId] cannot be applied as template. Available applicators: [$availableApplicatorsString]"); |
42 | 42 | } |
@@ -53,13 +53,13 @@ |
||
53 | 53 | |
54 | 54 | if ($child instanceof Module && $child->isPageSpecific()) { |
55 | 55 | $duplicatedChild = $child::create([ |
56 | - 'slug' => $targetModel->title ? $targetModel->title . '-' . $child->slug : $child->slug . '-copy', |
|
56 | + 'slug' => $targetModel->title ? $targetModel->title.'-'.$child->slug : $child->slug.'-copy', |
|
57 | 57 | 'owner_id' => $targetModel->id, |
58 | 58 | 'owner_type' => $targetModel->getMorphClass() |
59 | 59 | ]); |
60 | 60 | |
61 | 61 | $this->moduleTemplateApplicator->handle($child, $duplicatedChild); |
62 | - } else { |
|
62 | + }else { |
|
63 | 63 | $duplicatedChild = $child; |
64 | 64 | } |
65 | 65 |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | $manifestPath = '/chief-assets/back'; |
21 | 21 | |
22 | 22 | // Manifest expects each entry to start with a leading slash - we make sure to deduplicate the manifest path. |
23 | - $entry = str_replace($manifestPath, '', '/' . ltrim($filepath, '/')); |
|
23 | + $entry = str_replace($manifestPath, '', '/'.ltrim($filepath, '/')); |
|
24 | 24 | |
25 | 25 | try { |
26 | 26 | // Paths should be given relative to the manifestpath so make sure to remove the basepath |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | } catch (\Exception $e) { |
29 | 29 | \Illuminate\Support\Facades\Log::error($e); |
30 | 30 | |
31 | - return $manifestPath . $entry; |
|
31 | + return $manifestPath.$entry; |
|
32 | 32 | } |
33 | 33 | } |
34 | 34 | } |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | |
117 | 117 | $teaser = mb_substr($text, 0, $max, 'utf-8'); |
118 | 118 | |
119 | - return strlen($text) <= $max ? $teaser : $teaser . $ending; |
|
119 | + return strlen($text) <= $max ? $teaser : $teaser.$ending; |
|
120 | 120 | } |
121 | 121 | } |
122 | 122 | |
@@ -247,16 +247,16 @@ discard block |
||
247 | 247 | 'fragment', |
248 | 248 | ], null), $parsed_url, $overrides); |
249 | 249 | |
250 | - $scheme = $parsed_url['scheme'] ? $parsed_url['scheme'] . '://' : null; |
|
251 | - $port = $parsed_url['port'] ? ':' . $parsed_url['port'] : null; |
|
252 | - $fragment = $parsed_url['fragment'] ? '#' . $parsed_url['fragment'] : null; |
|
250 | + $scheme = $parsed_url['scheme'] ? $parsed_url['scheme'].'://' : null; |
|
251 | + $port = $parsed_url['port'] ? ':'.$parsed_url['port'] : null; |
|
252 | + $fragment = $parsed_url['fragment'] ? '#'.$parsed_url['fragment'] : null; |
|
253 | 253 | |
254 | - $baseurl = $scheme . $parsed_url['host'] . $port . $parsed_url['path']; |
|
254 | + $baseurl = $scheme.$parsed_url['host'].$port.$parsed_url['path']; |
|
255 | 255 | $current_query = []; |
256 | 256 | |
257 | 257 | $_query = explode('&', $parsed_url['query']); |
258 | 258 | |
259 | - array_map(function ($v) use (&$current_query) { |
|
259 | + array_map(function($v) use (&$current_query) { |
|
260 | 260 | if (!$v) { |
261 | 261 | return; |
262 | 262 | } |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | |
275 | 275 | $query = urldecode(http_build_query(array_merge($current_query, $query_params))); |
276 | 276 | |
277 | - return $baseurl . '?' . $query . $fragment; |
|
277 | + return $baseurl.'?'.$query.$fragment; |
|
278 | 278 | } |
279 | 279 | } |
280 | 280 |