@@ -37,8 +37,8 @@ discard block |
||
| 37 | 37 | { |
| 38 | 38 | $requestInput = request()->all(); |
| 39 | 39 | |
| 40 | - return array_reduce($this->all(), function ($carry, Filter $filter) use ($requestInput) { |
|
| 41 | - return $carry . $filter->render($requestInput); |
|
| 40 | + return array_reduce($this->all(), function($carry, Filter $filter) use ($requestInput) { |
|
| 41 | + return $carry.$filter->render($requestInput); |
|
| 42 | 42 | }, ''); |
| 43 | 43 | } |
| 44 | 44 | |
@@ -54,14 +54,14 @@ discard block |
||
| 54 | 54 | |
| 55 | 55 | public function keys(): array |
| 56 | 56 | { |
| 57 | - return array_map(function (Filter $filter) { |
|
| 57 | + return array_map(function(Filter $filter) { |
|
| 58 | 58 | return $filter->key(); |
| 59 | 59 | }, $this->filters); |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | private function validateFilters(array $filters) |
| 63 | 63 | { |
| 64 | - array_map(function (Filter $filter) { |
|
| 64 | + array_map(function(Filter $filter) { |
|
| 65 | 65 | }, $filters); |
| 66 | 66 | } |
| 67 | 67 | |
@@ -86,8 +86,8 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | public function offsetSet($offset, $value) |
| 88 | 88 | { |
| 89 | - if (! $value instanceof Filter) { |
|
| 90 | - throw new \InvalidArgumentException('Passed value must be of type ' . Filter::class); |
|
| 89 | + if (!$value instanceof Filter) { |
|
| 90 | + throw new \InvalidArgumentException('Passed value must be of type '.Filter::class); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | $this->filters[$offset] = $value; |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | |
| 106 | 106 | private function sanitizeFilters(array $filters) |
| 107 | 107 | { |
| 108 | - return array_map(function ($filter) { |
|
| 108 | + return array_map(function($filter) { |
|
| 109 | 109 | if (is_string($filter) && class_exists($filter)) { |
| 110 | 110 | return $filter::init(); |
| 111 | 111 | } |
@@ -63,15 +63,15 @@ discard block |
||
| 63 | 63 | { |
| 64 | 64 | $permission = 'update-page'; |
| 65 | 65 | |
| 66 | - if (in_array($verb, ['index','show'])) { |
|
| 66 | + if (in_array($verb, ['index', 'show'])) { |
|
| 67 | 67 | $permission = 'view-page'; |
| 68 | - } elseif (in_array($verb, ['create','store'])) { |
|
| 68 | + } elseif (in_array($verb, ['create', 'store'])) { |
|
| 69 | 69 | $permission = 'create-page'; |
| 70 | 70 | } elseif (in_array($verb, ['delete'])) { |
| 71 | 71 | $permission = 'delete-page'; |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - if (! auth()->guard('chief')->user()->hasPermissionTo($permission)) { |
|
| 74 | + if (!auth()->guard('chief')->user()->hasPermissionTo($permission)) { |
|
| 75 | 75 | throw NotAllowedManagerRoute::notAllowedPermission($permission, $this); |
| 76 | 76 | } |
| 77 | 77 | } |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | public function saveFields(Request $request) |
| 104 | 104 | { |
| 105 | 105 | // Store the morph_key upon creation |
| 106 | - if (! $this->model->morph_key) { |
|
| 106 | + if (!$this->model->morph_key) { |
|
| 107 | 107 | $this->model->morph_key = $this->model->morphKey(); |
| 108 | 108 | } |
| 109 | 109 | |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | if (is_array_empty($translation)) { |
| 143 | 143 | |
| 144 | 144 | // Nullify all values |
| 145 | - $trans[$locale] = array_map(function ($value) { |
|
| 145 | + $trans[$locale] = array_map(function($value) { |
|
| 146 | 146 | return null; |
| 147 | 147 | }, $translation); |
| 148 | 148 | continue; |
@@ -73,11 +73,11 @@ discard block |
||
| 73 | 73 | $this->filters()->apply($builder); |
| 74 | 74 | |
| 75 | 75 | $results = $builder->get(); |
| 76 | - } else { |
|
| 76 | + }else { |
|
| 77 | 77 | $results = $model::all(); |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - return $results->map(function ($model) { |
|
| 80 | + return $results->map(function($model) { |
|
| 81 | 81 | return (new static($this->registration))->manage($model); |
| 82 | 82 | }); |
| 83 | 83 | } |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | |
| 146 | 146 | public function guard($verb): Manager |
| 147 | 147 | { |
| 148 | - if (! $this->can($verb)) { |
|
| 148 | + if (!$this->can($verb)) { |
|
| 149 | 149 | NotAllowedManagerRoute::notAllowedVerb($verb, $this); |
| 150 | 150 | } |
| 151 | 151 | |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | $fields = $this->fields(); |
| 169 | 169 | |
| 170 | 170 | foreach ($this->assistants() as $assistant) { |
| 171 | - if (! method_exists($assistant, 'fields')) { |
|
| 171 | + if (!method_exists($assistant, 'fields')) { |
|
| 172 | 172 | continue; |
| 173 | 173 | } |
| 174 | 174 | |
@@ -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 | } |
@@ -65,8 +65,8 @@ discard block |
||
| 65 | 65 | public static function getByModel(Model $model) |
| 66 | 66 | { |
| 67 | 67 | return static::where('model_type', $model->getMorphClass()) |
| 68 | - ->where('model_id', $model->id) |
|
| 69 | - ->get(); |
|
| 68 | + ->where('model_id', $model->id) |
|
| 69 | + ->get(); |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | public static function findRecentRedirect(Model $model, string $locale): ?self |
@@ -134,9 +134,9 @@ discard block |
||
| 134 | 134 | if ($ignoredModel) { |
| 135 | 135 | $builder->whereNotIn('id', function ($query) use ($ignoredModel) { |
| 136 | 136 | $query->select('id') |
| 137 | - ->from('chief_urls') |
|
| 138 | - ->where('model_type', '=', $ignoredModel->getMorphClass()) |
|
| 139 | - ->where('model_id', '=', $ignoredModel->id); |
|
| 137 | + ->from('chief_urls') |
|
| 138 | + ->where('model_type', '=', $ignoredModel->getMorphClass()) |
|
| 139 | + ->where('model_id', '=', $ignoredModel->id); |
|
| 140 | 140 | }); |
| 141 | 141 | } |
| 142 | 142 | |
@@ -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 | |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | $fields[$key] = UrlSlugField::make($key) |
| 30 | 30 | ->setUrlRecord($record) |
| 31 | 31 | ->setBaseUrlSegment($model->baseUrlSegment($record->locale)) |
| 32 | - ->prepend($model->resolveUrl($record->locale, $model->baseUrlSegment($record->locale)) .'/'); |
|
| 32 | + ->prepend($model->resolveUrl($record->locale, $model->baseUrlSegment($record->locale)).'/'); |
|
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | return $fields; |
@@ -61,10 +61,10 @@ discard block |
||
| 61 | 61 | $fields = new static([]); |
| 62 | 62 | |
| 63 | 63 | foreach ($locales as $locale) { |
| 64 | - $fields['url-slugs.' . $locale] = UrlSlugField::make('url-slugs.' . $locale) |
|
| 64 | + $fields['url-slugs.'.$locale] = UrlSlugField::make('url-slugs.'.$locale) |
|
| 65 | 65 | ->setBaseUrlSegment($model->baseUrlSegment($locale)) |
| 66 | - ->prepend($model->resolveUrl($locale, $model->baseUrlSegment($locale)) .'/') |
|
| 67 | - ->name('url-slugs[' . $locale . ']') |
|
| 66 | + ->prepend($model->resolveUrl($locale, $model->baseUrlSegment($locale)).'/') |
|
| 67 | + ->name('url-slugs['.$locale.']') |
|
| 68 | 68 | ->label($locale); |
| 69 | 69 | } |
| 70 | 70 | |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | */ |
| 78 | 78 | private static function fillWithExistingValues(ProvidesUrl $model, self $fields): void |
| 79 | 79 | { |
| 80 | - $records = UrlRecord::getByModel($model)->reject(function ($record) { |
|
| 80 | + $records = UrlRecord::getByModel($model)->reject(function($record) { |
|
| 81 | 81 | return $record->isRedirect(); |
| 82 | 82 | })->sortBy('locale'); |
| 83 | 83 | |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | $fields['url-slugs.'.$record->locale] |
| 90 | 90 | ->setUrlRecord($record) |
| 91 | 91 | ->setBaseUrlSegment($model->baseUrlSegment($record->locale)) |
| 92 | - ->prepend($model->resolveUrl($record->locale, $model->baseUrlSegment($record->locale)) .'/'); |
|
| 92 | + ->prepend($model->resolveUrl($record->locale, $model->baseUrlSegment($record->locale)).'/'); |
|
| 93 | 93 | } |
| 94 | 94 | } |
| 95 | 95 | } |
@@ -67,7 +67,7 @@ |
||
| 67 | 67 | return static::$managedModelKey; |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - throw new \Exception('Missing required static property \'managedModelKey\' on ' . static::class. '.'); |
|
| 70 | + throw new \Exception('Missing required static property \'managedModelKey\' on '.static::class.'.'); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | /** |
@@ -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 default view ['.$basePath.'show] exists.'); |
| 65 | 65 | } |
| 66 | 66 | } |