@@ -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; |
@@ -25,10 +25,10 @@ discard block |
||
| 25 | 25 | |
| 26 | 26 | public function manager(Manager $manager) |
| 27 | 27 | { |
| 28 | - $this->manager = $manager; |
|
| 28 | + $this->manager = $manager; |
|
| 29 | 29 | |
| 30 | - if (! $manager->model() instanceof ProvidesUrl) { |
|
| 31 | - throw new \Exception('UrlAssistant requires the model interfaced by ' . ProvidesUrl::class . '.'); |
|
| 30 | + if (!$manager->model() instanceof ProvidesUrl) { |
|
| 31 | + throw new \Exception('UrlAssistant requires the model interfaced by '.ProvidesUrl::class.'.'); |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | $this->model = $manager->model(); |
@@ -56,14 +56,14 @@ discard block |
||
| 56 | 56 | InputField::make('url-slugs') |
| 57 | 57 | ->validation( |
| 58 | 58 | [ |
| 59 | - 'url-slugs' => ['array', 'min:1', new UniqueUrlSlugRule(($this->model && $this->model->exists) ? $this->model : null),], |
|
| 59 | + 'url-slugs' => ['array', 'min:1', new UniqueUrlSlugRule(($this->model && $this->model->exists) ? $this->model : null), ], |
|
| 60 | 60 | ], |
| 61 | 61 | [], |
| 62 | 62 | [ |
| 63 | 63 | 'url-slugs.*' => 'taalspecifieke link', |
| 64 | 64 | ]) |
| 65 | 65 | ->view('chief::back._fields.url-slugs') |
| 66 | - ->viewData(['fields' => UrlSlugFields::fromModel($this->model) ]), |
|
| 66 | + ->viewData(['fields' => UrlSlugFields::fromModel($this->model)]), |
|
| 67 | 67 | ]); |
| 68 | 68 | } |
| 69 | 69 | |
@@ -73,9 +73,9 @@ discard block |
||
| 73 | 73 | |
| 74 | 74 | // Push update to homepage setting value |
| 75 | 75 | // TODO: we should just fetch the homepages and push that instead... |
| 76 | - UrlRecord::getByModel($this->model)->reject(function ($record) { |
|
| 76 | + UrlRecord::getByModel($this->model)->reject(function($record) { |
|
| 77 | 77 | return ($record->isRedirect() || !$record->isHomepage()); |
| 78 | - })->each(function ($record) { |
|
| 78 | + })->each(function($record) { |
|
| 79 | 79 | app(ChangeHomepage::class)->onUrlChanged($record); |
| 80 | 80 | }); |
| 81 | 81 | } |
@@ -61,15 +61,15 @@ discard block |
||
| 61 | 61 | { |
| 62 | 62 | $permission = 'update-page'; |
| 63 | 63 | |
| 64 | - if (in_array($verb, ['index','show'])) { |
|
| 64 | + if (in_array($verb, ['index', 'show'])) { |
|
| 65 | 65 | $permission = 'view-page'; |
| 66 | - } elseif (in_array($verb, ['create','store'])) { |
|
| 66 | + } elseif (in_array($verb, ['create', 'store'])) { |
|
| 67 | 67 | $permission = 'create-page'; |
| 68 | 68 | } elseif (in_array($verb, ['delete'])) { |
| 69 | 69 | $permission = 'delete-page'; |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - if (! auth()->guard('chief')->user()->hasPermissionTo($permission)) { |
|
| 72 | + if (!auth()->guard('chief')->user()->hasPermissionTo($permission)) { |
|
| 73 | 73 | throw NotAllowedManagerRoute::notAllowedPermission($permission, $this); |
| 74 | 74 | } |
| 75 | 75 | } |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | public function fieldArrangement($key = null): FieldArrangement |
| 132 | 132 | { |
| 133 | 133 | if ($key == 'create') { |
| 134 | - return new FieldArrangement($this->fieldsWithAssistantFields()->filterBy(function ($field) { |
|
| 134 | + return new FieldArrangement($this->fieldsWithAssistantFields()->filterBy(function($field) { |
|
| 135 | 135 | return in_array($field->key, ['title']); |
| 136 | 136 | })); |
| 137 | 137 | } |
@@ -153,8 +153,8 @@ discard block |
||
| 153 | 153 | if ($this->model->id) { |
| 154 | 154 | return parent::details() |
| 155 | 155 | ->set('title', $this->model->title) |
| 156 | - ->set('intro', 'Aangepast ' . $this->model->updated_at->format('d/m/Y H:i')) |
|
| 157 | - ->set('context', '<span class="inline-xs stack-s">' . $this->assistant('publish')->publicationStatusAsLabel() . '</span>'); |
|
| 156 | + ->set('intro', 'Aangepast '.$this->model->updated_at->format('d/m/Y H:i')) |
|
| 157 | + ->set('context', '<span class="inline-xs stack-s">'.$this->assistant('publish')->publicationStatusAsLabel().'</span>'); |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | return parent::details(); |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | public function saveFields(Request $request) |
| 164 | 164 | { |
| 165 | 165 | // Store the morph_key upon creation |
| 166 | - if ($this->model instanceof MorphableContract && ! $this->model->morph_key) { |
|
| 166 | + if ($this->model instanceof MorphableContract && !$this->model->morph_key) { |
|
| 167 | 167 | $this->model->morph_key = $this->model->morphKey(); |
| 168 | 168 | } |
| 169 | 169 | |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | if (is_array_empty($translation)) { |
| 209 | 209 | |
| 210 | 210 | // Nullify all values |
| 211 | - $trans[$locale] = array_map(function ($value) { |
|
| 211 | + $trans[$locale] = array_map(function($value) { |
|
| 212 | 212 | return null; |
| 213 | 213 | }, $translation); |
| 214 | 214 | continue; |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | return static::$managedModelKey; |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - throw new \Exception('Missing required static property \'managedModelKey\' on ' . static::class. '.'); |
|
| 87 | + throw new \Exception('Missing required static property \'managedModelKey\' on '.static::class.'.'); |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | /** |
@@ -124,9 +124,9 @@ discard block |
||
| 124 | 124 | public function flatReferenceLabel(): string |
| 125 | 125 | { |
| 126 | 126 | if ($this->exists) { |
| 127 | - $status = ! $this->isPublished() ? ' [' . $this->statusAsPlainLabel().']' : null; |
|
| 127 | + $status = !$this->isPublished() ? ' ['.$this->statusAsPlainLabel().']' : null; |
|
| 128 | 128 | |
| 129 | - return $this->title ? $this->title . $status : ''; |
|
| 129 | + return $this->title ? $this->title.$status : ''; |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | return ''; |