@@ -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 | |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | |
| 19 | 19 | public static function redirectsFromModel(ProvidesUrl $model) |
| 20 | 20 | { |
| 21 | - $records = MemoizedUrlRecord::getByModel($model)->reject(function ($record) { |
|
| 21 | + $records = MemoizedUrlRecord::getByModel($model)->reject(function($record) { |
|
| 22 | 22 | return !$record->isRedirect(); |
| 23 | 23 | })->sortByDesc('created_at'); |
| 24 | 24 | |
@@ -60,10 +60,10 @@ discard block |
||
| 60 | 60 | $fields = new static([]); |
| 61 | 61 | |
| 62 | 62 | foreach ($locales as $locale) { |
| 63 | - $fields['url-slugs.' . $locale] = UrlSlugField::make('url-slugs.' . $locale) |
|
| 63 | + $fields['url-slugs.'.$locale] = UrlSlugField::make('url-slugs.'.$locale) |
|
| 64 | 64 | ->setBaseUrlSegment($model->baseUrlSegment($locale)) |
| 65 | - ->prepend($model->resolveUrl($locale, $model->baseUrlSegment($locale)) .'/') |
|
| 66 | - ->name('url-slugs[' . $locale . ']') |
|
| 65 | + ->prepend($model->resolveUrl($locale, $model->baseUrlSegment($locale)).'/') |
|
| 66 | + ->name('url-slugs['.$locale.']') |
|
| 67 | 67 | ->label($locale); |
| 68 | 68 | } |
| 69 | 69 | |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | */ |
| 77 | 77 | private static function fillWithExistingValues(ProvidesUrl $model, self $fields): void |
| 78 | 78 | { |
| 79 | - $records = UrlRecord::getByModel($model)->reject(function ($record) { |
|
| 79 | + $records = UrlRecord::getByModel($model)->reject(function($record) { |
|
| 80 | 80 | return $record->isRedirect(); |
| 81 | 81 | })->sortBy('locale'); |
| 82 | 82 | |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | $fields['url-slugs.'.$record->locale] |
| 89 | 89 | ->setUrlRecord($record) |
| 90 | 90 | ->setBaseUrlSegment($model->baseUrlSegment($record->locale)) |
| 91 | - ->prepend($model->resolveUrl($record->locale, $model->baseUrlSegment($record->locale)) .'/'); |
|
| 91 | + ->prepend($model->resolveUrl($record->locale, $model->baseUrlSegment($record->locale)).'/'); |
|
| 92 | 92 | } |
| 93 | 93 | } |
| 94 | 94 | } |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | if (PreviewMode::fromRequest()->check()) { |
| 12 | 12 | Session::now('note.default', 'U bekijkt een preview.'); |
| 13 | 13 | return true; |
| 14 | - } else { |
|
| 14 | + }else { |
|
| 15 | 15 | return false; |
| 16 | 16 | } |
| 17 | 17 | } |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Thinktomorrow\Chief\Fields\Types; |
| 5 | 5 | |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | { |
| 29 | 29 | $class = $this->pageState->isOnline() ? 'text-success' : 'text-warning'; |
| 30 | 30 | |
| 31 | - return '<span class="inline-xs stack-s '.$class.'">' . $this->stateAsLabel() . '</span>'; |
|
| 31 | + return '<span class="inline-xs stack-s '.$class.'">'.$this->stateAsLabel().'</span>'; |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | /** |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | |
| 45 | 45 | public static function getByModel(Model $model) |
| 46 | 46 | { |
| 47 | - return chiefMemoize('url-records-get-by-model', function ($model) { |
|
| 47 | + return chiefMemoize('url-records-get-by-model', function($model) { |
|
| 48 | 48 | return parent::getByModel($model); |
| 49 | 49 | }, [$model]); |
| 50 | 50 | } |
@@ -44,11 +44,11 @@ discard block |
||
| 44 | 44 | throw new \DomainException('Corrupt target model for this url request. Model by reference ['.$urlRecord->model_type.'@'.$urlRecord->model_id.'] has probably been archived or deleted.'); |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | - if (method_exists($model, 'isPublished') && ! $model->isPublished()) { |
|
| 47 | + if (method_exists($model, 'isPublished') && !$model->isPublished()) { |
|
| 48 | 48 | |
| 49 | 49 | /** When admin is logged in and this request is in preview mode, we allow the view */ |
| 50 | - if (! PreviewMode::fromRequest()->check()) { |
|
| 51 | - throw new NotFoundHttpException('Model found for request ['. $slug .'] but it is not published.'); |
|
| 50 | + if (!PreviewMode::fromRequest()->check()) { |
|
| 51 | + throw new NotFoundHttpException('Model found for request ['.$slug.'] but it is not published.'); |
|
| 52 | 52 | } |
| 53 | 53 | } |
| 54 | 54 | |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | } |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | - throw new NotFoundHttpException('No url or model found for request ['. $slug .'] for locale ['.$locale.'].'); |
|
| 62 | + throw new NotFoundHttpException('No url or model found for request ['.$slug.'] for locale ['.$locale.'].'); |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | private static function createRedirect(string $url) |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | $this->model = $model; |
| 19 | 19 | $this->blacklist = $blacklist; |
| 20 | 20 | |
| 21 | - $this->slugResolver = function ($slug) { |
|
| 21 | + $this->slugResolver = function($slug) { |
|
| 22 | 22 | return Illuminate\Support\Str::slug($slug); |
| 23 | 23 | }; |
| 24 | 24 | } |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | |
| 50 | 50 | $availableChildren = AvailableChildren::forParent($model); |
| 51 | 51 | |
| 52 | - $modules = $availableChildren->onlyModules()->reject(function ($module) use ($model) { |
|
| 52 | + $modules = $availableChildren->onlyModules()->reject(function($module) use ($model) { |
|
| 53 | 53 | return $module->page_id != null && $module->page_id != $model->id; |
| 54 | 54 | }); |
| 55 | 55 | |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | $available_sets = FlatReferencePresenter::toGroupedSelectValues($availableChildren->onlySets())->toArray(); |
| 59 | 59 | |
| 60 | 60 | // Current sections |
| 61 | - $sections = $model->children()->map(function ($section, $index) { |
|
| 61 | + $sections = $model->children()->map(function($section, $index) { |
|
| 62 | 62 | if ($section instanceof TranslatableContract) { |
| 63 | 63 | $section->injectTranslationForForm(); |
| 64 | 64 | } |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | */ |
| 93 | 93 | private function findEditUrl($model): ?string |
| 94 | 94 | { |
| 95 | - if (! $model instanceof ManagedModel) { |
|
| 95 | + if (!$model instanceof ManagedModel) { |
|
| 96 | 96 | return null; |
| 97 | 97 | } |
| 98 | 98 | |