@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | |
27 | 27 | // Media fields are treated separately |
28 | 28 | if ($field->ofType(FieldType::MEDIA, FieldType::DOCUMENT)) { |
29 | - if (! isset($this->saveMethods['_files'])) { |
|
29 | + if (!isset($this->saveMethods['_files'])) { |
|
30 | 30 | $this->saveMethods['_files'] = ['field' => new Fields([$field]), 'method' => 'uploadMedia']; |
31 | 31 | continue; |
32 | 32 | } |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | } |
37 | 37 | |
38 | 38 | // Custom set methods - default is the generic setField() method. |
39 | - $methodName = 'set'. ucfirst(Str::camel($field->key())) . 'Field'; |
|
39 | + $methodName = 'set'.ucfirst(Str::camel($field->key())).'Field'; |
|
40 | 40 | (method_exists($this, $methodName)) |
41 | 41 | ? $this->$methodName($field, $request) |
42 | 42 | : $this->setField($field, $request); |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | |
54 | 54 | protected function detectCustomSaveMethods(Field $field): bool |
55 | 55 | { |
56 | - $saveMethodName = 'save'. ucfirst(Str::camel($field->key())) . 'Field'; |
|
56 | + $saveMethodName = 'save'.ucfirst(Str::camel($field->key())).'Field'; |
|
57 | 57 | |
58 | 58 | // Custom save method on assistant |
59 | 59 | foreach ($this->assistants() as $assistant) { |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | |
96 | 96 | // Make our media fields able to be translatable as well... |
97 | 97 | if ($field->ofType(FieldType::MEDIA, FieldType::DOCUMENT)) { |
98 | - throw new \Exception('Cannot process the ' . $field->key . ' media field. Currently no support for translatable media files. We should fix this!'); |
|
98 | + throw new \Exception('Cannot process the '.$field->key.' media field. Currently no support for translatable media files. We should fix this!'); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | // Okay so this is a bit odd but since all translations are expected to be inside the trans |
@@ -13,7 +13,7 @@ |
||
13 | 13 | |
14 | 14 | public function register() |
15 | 15 | { |
16 | - $this->app->singleton(Settings::class, function ($app) { |
|
16 | + $this->app->singleton(Settings::class, function($app) { |
|
17 | 17 | return new Settings(); |
18 | 18 | }); |
19 | 19 | } |
@@ -37,7 +37,7 @@ |
||
37 | 37 | { |
38 | 38 | foreach ($parameters as $key => $value) { |
39 | 39 | if ($value instanceof Model) { |
40 | - $parameters[$key] = get_class($value) . '@' . $value->id; |
|
40 | + $parameters[$key] = get_class($value).'@'.$value->id; |
|
41 | 41 | } |
42 | 42 | } |
43 | 43 |
@@ -81,7 +81,7 @@ |
||
81 | 81 | 'baseUrlSegment' => $this->baseUrlSegment, |
82 | 82 | 'hint' => null, // Hint placeholder to show url hint when it already exists |
83 | 83 | 'is_homepage' => ($this->value() === '/'), |
84 | - 'show' => !!$this->value(),// show input field or not |
|
84 | + 'show' => !!$this->value(), // show input field or not |
|
85 | 85 | ]); |
86 | 86 | } |
87 | 87 | } |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | |
72 | 72 | public function findAll(): Collection |
73 | 73 | { |
74 | - return $this->model->published()->get()->map(function ($model) { |
|
74 | + return $this->model->published()->get()->map(function($model) { |
|
75 | 75 | return $this->managers->findByModel($model); |
76 | 76 | }); |
77 | 77 | } |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | |
94 | 94 | public function guard($verb): Assistant |
95 | 95 | { |
96 | - if (! $this->can($verb)) { |
|
96 | + if (!$this->can($verb)) { |
|
97 | 97 | NotAllowedManagerRoute::notAllowedVerb($verb, $this->manager); |
98 | 98 | } |
99 | 99 | |
@@ -117,10 +117,10 @@ discard block |
||
117 | 117 | $class = 'text-warning'; |
118 | 118 | } |
119 | 119 | |
120 | - $statusAsLabel = '<span class="font-bold '. $class .'"><em>' . $label . '</em></span>'; |
|
120 | + $statusAsLabel = '<span class="font-bold '.$class.'"><em>'.$label.'</em></span>'; |
|
121 | 121 | |
122 | 122 | if (!$plain && $this->hasPreviewUrl()) { |
123 | - $statusAsLabel = '<a href="'.$this->previewUrl().'" target="_blank">'. $statusAsLabel .'</a>'; |
|
123 | + $statusAsLabel = '<a href="'.$this->previewUrl().'" target="_blank">'.$statusAsLabel.'</a>'; |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | return $statusAsLabel; |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | */ |
35 | 35 | public function get(): string |
36 | 36 | { |
37 | - $basePath = $this->viewBasePath ? $this->viewBasePath . '.' : ''; |
|
37 | + $basePath = $this->viewBasePath ? $this->viewBasePath.'.' : ''; |
|
38 | 38 | $guessedParentViewName = $this->parent ? $this->parent->viewKey() : ''; |
39 | 39 | $guessedViewName = $this->viewable->viewKey(); |
40 | 40 | |
@@ -53,14 +53,14 @@ discard block |
||
53 | 53 | } |
54 | 54 | |
55 | 55 | foreach ($viewPaths as $viewPath) { |
56 | - if (! view()->exists($viewPath)) { |
|
56 | + if (!view()->exists($viewPath)) { |
|
57 | 57 | continue; |
58 | 58 | } |
59 | 59 | |
60 | 60 | return $viewPath; |
61 | 61 | } |
62 | 62 | |
63 | - if (! view()->exists($basePath.'show')) { |
|
63 | + if (!view()->exists($basePath.'show')) { |
|
64 | 64 | throw new NotFoundView('Viewfile not found for ['.get_class($this->viewable).']. Make sure the view ['.$basePath.$guessedViewName.'] or the default view ['.$basePath.'show] exists.'); |
65 | 65 | } |
66 | 66 | } |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | |
20 | 20 | public static function fromKeys($keys) |
21 | 21 | { |
22 | - $keys = (array) $keys; |
|
22 | + $keys = (array)$keys; |
|
23 | 23 | $collection = collect(); |
24 | 24 | |
25 | 25 | /** @var Managers */ |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | public static function fromTags($tags) |
35 | 35 | { |
36 | - $tags = (array) $tags; |
|
36 | + $tags = (array)$tags; |
|
37 | 37 | $collection = collect(); |
38 | 38 | |
39 | 39 | /** @var Managers */ |
@@ -52,9 +52,9 @@ discard block |
||
52 | 52 | |
53 | 53 | private static function fromManagers(Collection $collection) |
54 | 54 | { |
55 | - return new static(...$collection->reject(function ($manager) { |
|
55 | + return new static(...$collection->reject(function($manager) { |
|
56 | 56 | return !$manager->can('index'); |
57 | - })->map(function ($manager) { |
|
57 | + })->map(function($manager) { |
|
58 | 58 | return new NavItem($manager->details()->plural, $manager->route('index'), [ |
59 | 59 | 'key' => $manager->details()->key, |
60 | 60 | 'tags' => app(Register::class)->filterByKey($manager->details()->key)->first()->tags() |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | |
65 | 65 | public function rejectKeys($keys) |
66 | 66 | { |
67 | - $keys = (array) $keys; |
|
67 | + $keys = (array)$keys; |
|
68 | 68 | |
69 | 69 | foreach ($this->items as $k => $item) { |
70 | 70 | if (in_array($item->details('key', ''), $keys)) { |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | |
78 | 78 | public function rejectTags($tags) |
79 | 79 | { |
80 | - $tags = (array) $tags; |
|
80 | + $tags = (array)$tags; |
|
81 | 81 | |
82 | 82 | foreach ($this->items as $k => $item) { |
83 | 83 | if (count(array_intersect($item->details('tags', []), $tags)) > 0) { |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | $output = ''; |
120 | 120 | |
121 | 121 | foreach ($this->items as $item) { |
122 | - $output .= '<a class="' . (isActiveUrl($item->url()) ? 'active' : '') . '" href="'.$item->url().'">'; |
|
122 | + $output .= '<a class="'.(isActiveUrl($item->url()) ? 'active' : '').'" href="'.$item->url().'">'; |
|
123 | 123 | $output .= $title ?? ucfirst($item->title()); |
124 | 124 | $output .= '</a>'; |
125 | 125 | } |
@@ -146,14 +146,14 @@ discard block |
||
146 | 146 | |
147 | 147 | $items = ''; |
148 | 148 | foreach ($this->items as $item) { |
149 | - $items .= '<a class="' . (isActiveUrl($item->url()) ? 'active' : '') . '" href="'.$item->url().'">'; |
|
149 | + $items .= '<a class="'.(isActiveUrl($item->url()) ? 'active' : '').'" href="'.$item->url().'">'; |
|
150 | 150 | $items .= ucfirst($item->title()); |
151 | 151 | $items .= '</a>'; |
152 | 152 | } |
153 | 153 | |
154 | 154 | // Surround within vue dropdown |
155 | 155 | $output = '<dropdown>'; |
156 | - $output .= '<span class="center-y nav-item" slot="trigger" slot-scope="{ toggle, isActive }" @click="toggle">'. ($title ?? 'Collecties') .'</span>'; |
|
156 | + $output .= '<span class="center-y nav-item" slot="trigger" slot-scope="{ toggle, isActive }" @click="toggle">'.($title ?? 'Collecties').'</span>'; |
|
157 | 157 | $output .= '<div v-cloak class="dropdown-box inset-s">'; |
158 | 158 | $output .= $items; |
159 | 159 | $output .= '</div>'; |
@@ -53,7 +53,7 @@ |
||
53 | 53 | { |
54 | 54 | foreach ($flatReferences as $locale => $flatReferenceString) { |
55 | 55 | if (!$flatReferenceString) { |
56 | - throw new \InvalidArgumentException('Homepage setting value cannot be empty. Value for locale ' . $locale . ' is missing.'); |
|
56 | + throw new \InvalidArgumentException('Homepage setting value cannot be empty. Value for locale '.$locale.' is missing.'); |
|
57 | 57 | } |
58 | 58 | } |
59 | 59 | } |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | // prepend the name with the expected trans.<locale>. string |
28 | 28 | $localizedAttr = (false !== strpos($attr, ':locale')) |
29 | 29 | ? str_replace(':locale', $locale, $attr) |
30 | - : 'trans.' . $locale . '.' . $attr; |
|
30 | + : 'trans.'.$locale.'.'.$attr; |
|
31 | 31 | |
32 | 32 | $localizedAttr = $this->replaceBracketsByDots($localizedAttr); |
33 | 33 | |
@@ -49,13 +49,13 @@ discard block |
||
49 | 49 | */ |
50 | 50 | public function influenceByPayload(array $data) |
51 | 51 | { |
52 | - if (! isset($data['trans'])) { |
|
52 | + if (!isset($data['trans'])) { |
|
53 | 53 | return $this; |
54 | 54 | } |
55 | 55 | |
56 | 56 | // Remove locales that are considered empty in the request payload |
57 | 57 | foreach ($data['trans'] as $locale => $values) { |
58 | - if ($locale == $this->defaultLocale || ! is_array_empty($values)) { |
|
58 | + if ($locale == $this->defaultLocale || !is_array_empty($values)) { |
|
59 | 59 | continue; |
60 | 60 | } |
61 | 61 |