@@ -38,7 +38,7 @@ |
||
| 38 | 38 | private function addCustomValidationMessage($attribute, $params, $validator): void |
| 39 | 39 | { |
| 40 | 40 | $validator->setCustomMessages([ |
| 41 | - 'filefield_mimetypes' => ':attribute is niet het juiste bestandstype. Volgende types zijn geldig: ' . implode(', ', $params), |
|
| 41 | + 'filefield_mimetypes' => ':attribute is niet het juiste bestandstype. Volgende types zijn geldig: '.implode(', ', $params), |
|
| 42 | 42 | ]); |
| 43 | 43 | |
| 44 | 44 | if (!isset($validator->customAttributes[$attribute])) { |
@@ -54,7 +54,7 @@ |
||
| 54 | 54 | private function addCustomValidationMessage($attribute, $params, $validator): void |
| 55 | 55 | { |
| 56 | 56 | $validator->setCustomMessages([ |
| 57 | - 'imagefield_min' => ':attribute is te klein en dient groter te zijn dan ' . implode(',', $params) . 'Kb.', |
|
| 57 | + 'imagefield_min' => ':attribute is te klein en dient groter te zijn dan '.implode(',', $params).'Kb.', |
|
| 58 | 58 | ]); |
| 59 | 59 | |
| 60 | 60 | if (!isset($validator->customAttributes[$attribute])) { |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | $mimetype = json_decode($value)->output->type; |
| 39 | 39 | |
| 40 | 40 | return (in_array($mimetype, $parameters) || |
| 41 | - in_array(explode('/', $mimetype)[0] . '/*', $parameters)); |
|
| 41 | + in_array(explode('/', $mimetype)[0].'/*', $parameters)); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | /** |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | private function addCustomValidationMessage($attribute, $params, $validator): void |
| 50 | 50 | { |
| 51 | 51 | $validator->setCustomMessages([ |
| 52 | - 'imagefield_mimetypes' => ':attribute is niet het juiste bestandstype. Volgende types zijn geldig: ' . implode(', ', $params), |
|
| 52 | + 'imagefield_mimetypes' => ':attribute is niet het juiste bestandstype. Volgende types zijn geldig: '.implode(', ', $params), |
|
| 53 | 53 | ]); |
| 54 | 54 | |
| 55 | 55 | if (!isset($validator->customAttributes[$attribute])) { |
@@ -141,10 +141,10 @@ discard block |
||
| 141 | 141 | return $filename; |
| 142 | 142 | } |
| 143 | 143 | |
| 144 | - $extension = substr($filename, strrpos($filename, '.') + 1); |
|
| 144 | + $extension = substr($filename, strrpos($filename, '.')+1); |
|
| 145 | 145 | $filename = substr($filename, 0, strrpos($filename, '.')); |
| 146 | 146 | |
| 147 | - return Str::slug($filename) . '.' . $extension; |
|
| 147 | + return Str::slug($filename).'.'.$extension; |
|
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | protected function sort(HasAsset $model, MediaField $field, Request $request) |
@@ -170,8 +170,8 @@ discard block |
||
| 170 | 170 | $values = isset($fileIdInput[$key]) |
| 171 | 171 | ? $fileIdInput[$key] |
| 172 | 172 | : ( |
| 173 | - isset($fileIdInput['files-' . $key]) |
|
| 174 | - ? $fileIdInput['files-' . $key] |
|
| 173 | + isset($fileIdInput['files-'.$key]) |
|
| 174 | + ? $fileIdInput['files-'.$key] |
|
| 175 | 175 | : '' |
| 176 | 176 | ); |
| 177 | 177 | |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | ->first(); |
| 38 | 38 | |
| 39 | 39 | if (!$record) { |
| 40 | - throw new UrlRecordNotFound('No url record found by slug [' . $slug . '] for locale [' . $locale . '].'); |
|
| 40 | + throw new UrlRecordNotFound('No url record found by slug ['.$slug.'] for locale ['.$locale.'].'); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | return $record; |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | ->first(); |
| 62 | 62 | |
| 63 | 63 | if (!$record) { |
| 64 | - throw new UrlRecordNotFound('No url record found for model [' . $model->getMorphClass() . '@' . $model->id . '] for locale [' . $locale . '].'); |
|
| 64 | + throw new UrlRecordNotFound('No url record found for model ['.$model->getMorphClass().'@'.$model->id.'] for locale ['.$locale.'].'); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | return $record; |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | if ($ignoredModel) { |
| 158 | - $builder->whereNotIn('id', function ($query) use ($ignoredModel) { |
|
| 158 | + $builder->whereNotIn('id', function($query) use ($ignoredModel) { |
|
| 159 | 159 | $query->select('id') |
| 160 | 160 | ->from('chief_urls') |
| 161 | 161 | ->where('model_type', '=', $ignoredModel->getMorphClass()) |
@@ -175,11 +175,11 @@ discard block |
||
| 175 | 175 | |
| 176 | 176 | // Filter out offline urls... TODO: this should be a state that is owned by the url and not the model. |
| 177 | 177 | // Because of archived pages the mapping can be null so we reject them before we check for online |
| 178 | - return $records->map(function (UrlRecord $urlRecord) { |
|
| 178 | + return $records->map(function(UrlRecord $urlRecord) { |
|
| 179 | 179 | return Morphables::instance($urlRecord->model_type)->find($urlRecord->model_id); |
| 180 | - })->reject(function ($model) { |
|
| 180 | + })->reject(function($model) { |
|
| 181 | 181 | return $model == null; |
| 182 | - })->reject(function (ProvidesUrl $model) { |
|
| 182 | + })->reject(function(ProvidesUrl $model) { |
|
| 183 | 183 | return (method_exists($model, 'isPublished') && !$model->isPublished()); |
| 184 | 184 | }); |
| 185 | 185 | } |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | { |
| 29 | 29 | $files = $this->filesystem->files($directory); |
| 30 | 30 | |
| 31 | - return collect($files)->filter(function ($file) { |
|
| 31 | + return collect($files)->filter(function($file) { |
|
| 32 | 32 | return (Str::startsWith($file->getFileName(), 'sitemap-') && Str::endsWith($file->getFileName(), '.xml')); |
| 33 | 33 | }); |
| 34 | 34 | } |
@@ -76,11 +76,11 @@ discard block |
||
| 76 | 76 | $models = UrlRecord::allOnlineModels($locale); |
| 77 | 77 | |
| 78 | 78 | $this->urls = $models |
| 79 | - ->reject(function (ProvidesUrl $model) use ($locale) { |
|
| 79 | + ->reject(function(ProvidesUrl $model) use ($locale) { |
|
| 80 | 80 | // In case the url is not found or present for given locale. |
| 81 | 81 | return !$model->url($locale); |
| 82 | 82 | }) |
| 83 | - ->map(function (ProvidesUrl $model) use ($locale, $alternateLocales) { |
|
| 83 | + ->map(function(ProvidesUrl $model) use ($locale, $alternateLocales) { |
|
| 84 | 84 | $url = $model->url($locale); |
| 85 | 85 | |
| 86 | 86 | $alternateUrls = []; |
@@ -101,12 +101,12 @@ discard block |
||
| 101 | 101 | { |
| 102 | 102 | $pool = new Pool($this->httpClient, $this->crawlableUrlGenerator(), [ |
| 103 | 103 | 'concurrency' => 5, |
| 104 | - 'fulfilled' => function (Response $response, $index) { |
|
| 104 | + 'fulfilled' => function(Response $response, $index) { |
|
| 105 | 105 | if ($response->getStatusCode() !== \Symfony\Component\HttpFoundation\Response::HTTP_OK) { |
| 106 | 106 | unset($this->urls[$index]); |
| 107 | 107 | } |
| 108 | 108 | }, |
| 109 | - 'rejected' => function (RequestException $reason, $index) { |
|
| 109 | + 'rejected' => function(RequestException $reason, $index) { |
|
| 110 | 110 | unset($this->urls[$index]); |
| 111 | 111 | }, |
| 112 | 112 | ]); |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | // Custom set methods - default is the generic setField() method. |
| 44 | - $methodName = 'set' . ucfirst(Str::camel($field->getKey())) . 'Field'; |
|
| 44 | + $methodName = 'set'.ucfirst(Str::camel($field->getKey())).'Field'; |
|
| 45 | 45 | (method_exists($this, $methodName)) |
| 46 | 46 | ? $this->$methodName($field, $request) |
| 47 | 47 | : $this->setField($field, $request); |
@@ -58,8 +58,8 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | protected function detectCustomSaveMethods(Field $field): bool |
| 60 | 60 | { |
| 61 | - $saveMethodByKey = 'save' . ucfirst(Str::camel($field->getKey())) . 'Field'; |
|
| 62 | - $saveMethodByType = 'save' . ucfirst(Str::camel($field->getType()->get())) . 'Fields'; |
|
| 61 | + $saveMethodByKey = 'save'.ucfirst(Str::camel($field->getKey())).'Field'; |
|
| 62 | + $saveMethodByType = 'save'.ucfirst(Str::camel($field->getType()->get())).'Fields'; |
|
| 63 | 63 | |
| 64 | 64 | foreach ([$saveMethodByKey, $saveMethodByType] as $saveMethod) { |
| 65 | 65 | foreach ($this->assistants() as $assistant) { |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | |
| 108 | 108 | // Make our media fields able to be translatable as well... |
| 109 | 109 | if ($field->ofType(FieldType::FILE, FieldType::IMAGE)) { |
| 110 | - throw new \Exception('Cannot process the ' . $field->getKey() . ' media field. Currently no support for translatable media files. We should fix this!'); |
|
| 110 | + throw new \Exception('Cannot process the '.$field->getKey().' media field. Currently no support for translatable media files. We should fix this!'); |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | // Okay so this is a bit odd but since all translations are expected to be inside the trans |
@@ -160,6 +160,6 @@ discard block |
||
| 160 | 160 | |
| 161 | 161 | public function saveImageFields(ImageField $field, Request $request) |
| 162 | 162 | { |
| 163 | - app(ImageFieldHandler::class)->handle($this->model, $field, $request->input('images.' . $field->getName(), []), $request); |
|
| 163 | + app(ImageFieldHandler::class)->handle($this->model, $field, $request->input('images.'.$field->getName(), []), $request); |
|
| 164 | 164 | } |
| 165 | 165 | } |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | $this->pageBuilderField(), |
| 89 | 89 | InputField::make('title')->translatable($this->model->availableLocales()) |
| 90 | 90 | ->validation('required-fallback-locale|max:200', [], [ |
| 91 | - 'trans.' . config('app.fallback_locale', 'nl') . '.title' => 'title', |
|
| 91 | + 'trans.'.config('app.fallback_locale', 'nl').'.title' => 'title', |
|
| 92 | 92 | ]) |
| 93 | 93 | ->label('Intern label') |
| 94 | 94 | ->description('Dit is de benaming die zal worden getoond in de admin selectie velden.') |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | if (is_array_empty($translation)) { |
| 211 | 211 | |
| 212 | 212 | // Nullify all values |
| 213 | - $trans[$locale] = array_map(function ($value) { |
|
| 213 | + $trans[$locale] = array_map(function($value) { |
|
| 214 | 214 | return null; |
| 215 | 215 | }, $translation); |
| 216 | 216 | continue; |