@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | return $this->relatedCache[$browser_name] = $this->relatedItems |
| 33 | 33 | ->where('browser_name', $browser_name) |
| 34 | - ->map(function ($item) { |
|
| 34 | + ->map(function($item) { |
|
| 35 | 35 | return $item->related; |
| 36 | 36 | }); |
| 37 | 37 | } |
@@ -46,9 +46,9 @@ discard block |
||
| 46 | 46 | |
| 47 | 47 | $position = 1; |
| 48 | 48 | |
| 49 | - Collection::make($items)->map(function ($item) { |
|
| 49 | + Collection::make($items)->map(function($item) { |
|
| 50 | 50 | return Arr::only($item, ['endpointType', 'id']); |
| 51 | - })->each(function ($values) use ($browser_name, &$position) { |
|
| 51 | + })->each(function($values) use ($browser_name, &$position) { |
|
| 52 | 52 | RelatedItem::create([ |
| 53 | 53 | 'subject_id' => $this->getKey(), |
| 54 | 54 | 'subject_type' => $this->getMorphClass(), |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | |
| 22 | 22 | public function scopeForBucket($query, $bucketKey) |
| 23 | 23 | { |
| 24 | - return $query->where('bucket_key', $bucketKey)->get()->map(function ($feature) { |
|
| 24 | + return $query->where('bucket_key', $bucketKey)->get()->map(function($feature) { |
|
| 25 | 25 | return $feature->featured; |
| 26 | 26 | })->filter(); |
| 27 | 27 | } |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | $items = $this->getIndexItems($scopes); |
| 95 | 95 | |
| 96 | 96 | return [ |
| 97 | - 'items' => $items->map(function ($item) { |
|
| 97 | + 'items' => $items->map(function($item) { |
|
| 98 | 98 | return $item->toCmsArray(); |
| 99 | 99 | })->toArray(), |
| 100 | 100 | 'maxPage' => $items->lastPage(), |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | { |
| 217 | 217 | $ids = explode(',', $this->request->input('ids')); |
| 218 | 218 | |
| 219 | - $metadatasFromRequest = $this->getExtraMetadatas()->reject(function ($meta) { |
|
| 219 | + $metadatasFromRequest = $this->getExtraMetadatas()->reject(function($meta) { |
|
| 220 | 220 | return is_null($meta); |
| 221 | 221 | })->toArray(); |
| 222 | 222 | |
@@ -240,7 +240,7 @@ discard block |
||
| 240 | 240 | $items = $this->getIndexItems($scopes); |
| 241 | 241 | |
| 242 | 242 | return $this->responseFactory->json([ |
| 243 | - 'items' => $items->map(function ($item) { |
|
| 243 | + 'items' => $items->map(function($item) { |
|
| 244 | 244 | return $item->toCmsArray(); |
| 245 | 245 | })->toArray(), |
| 246 | 246 | 'tags' => $this->repository->getTagsList(), |
@@ -279,7 +279,7 @@ discard block |
||
| 279 | 279 | */ |
| 280 | 280 | private function getExtraMetadatas() |
| 281 | 281 | { |
| 282 | - return Collection::make($this->customFields)->mapWithKeys(function ($field) { |
|
| 282 | + return Collection::make($this->customFields)->mapWithKeys(function($field) { |
|
| 283 | 283 | $fieldInRequest = $this->request->get($field['name']); |
| 284 | 284 | |
| 285 | 285 | if (isset($field['type']) && $field['type'] === 'checkbox') { |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | $items = $this->getIndexItems($scopes); |
| 89 | 89 | |
| 90 | 90 | return [ |
| 91 | - 'items' => $items->map(function ($item) { |
|
| 91 | + 'items' => $items->map(function($item) { |
|
| 92 | 92 | return $this->buildFile($item); |
| 93 | 93 | })->toArray(), |
| 94 | 94 | 'maxPage' => $items->lastPage(), |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | private function buildFile($item) |
| 105 | 105 | { |
| 106 | 106 | return $item->toCmsArray() + [ |
| 107 | - 'tags' => $item->tags->map(function ($tag) { |
|
| 107 | + 'tags' => $item->tags->map(function($tag) { |
|
| 108 | 108 | return $tag->name; |
| 109 | 109 | }), |
| 110 | 110 | 'deleteUrl' => $item->canDeleteSafely() ? moduleRoute($this->moduleName, $this->routePrefix, 'destroy', $item->id) : null, |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | $items = $this->getIndexItems($scopes); |
| 226 | 226 | |
| 227 | 227 | return $this->responseFactory->json([ |
| 228 | - 'items' => $items->map(function ($item) { |
|
| 228 | + 'items' => $items->map(function($item) { |
|
| 229 | 229 | return $this->buildFile($item); |
| 230 | 230 | })->toArray(), |
| 231 | 231 | 'tags' => $this->repository->getTagsList(), |
@@ -40,7 +40,7 @@ |
||
| 40 | 40 | 'name' => 'required', |
| 41 | 41 | 'role' => 'not_in:SUPERADMIN', |
| 42 | 42 | 'email' => 'required|email|unique:' . config('twill.users_table', 'twill_users') . ',email,' . $this->route('user'), |
| 43 | - 'verify-code' => function ($attribute, $value, $fail) { |
|
| 43 | + 'verify-code' => function($attribute, $value, $fail) { |
|
| 44 | 44 | $user = Auth::guard('twill_users')->user(); |
| 45 | 45 | $with2faSettings = config('twill.enabled.users-2fa') && $user->id == $this->route('user'); |
| 46 | 46 | |
@@ -62,7 +62,7 @@ |
||
| 62 | 62 | */ |
| 63 | 63 | public function filter($query, array $scopes = []) |
| 64 | 64 | { |
| 65 | - $query->when(isset($scopes['role']), function ($query) use ($scopes) { |
|
| 65 | + $query->when(isset($scopes['role']), function($query) use ($scopes) { |
|
| 66 | 66 | $query->where('role', $scopes['role']); |
| 67 | 67 | }); |
| 68 | 68 | $query->where('role', '<>', 'SUPERADMIN'); |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | $filesCollection = Collection::make(); |
| 24 | 24 | $filesFromFields = $this->getFiles($fields); |
| 25 | 25 | |
| 26 | - $filesFromFields->each(function ($file) use ($object, $filesCollection) { |
|
| 26 | + $filesFromFields->each(function($file) use ($object, $filesCollection) { |
|
| 27 | 27 | $newFile = File::withTrashed()->find($file['id']); |
| 28 | 28 | $pivot = $newFile->newPivot($object, Arr::except($file, ['id']), 'fileables', true); |
| 29 | 29 | $newFile->setRelation('pivot', $pivot); |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | |
| 49 | 49 | $object->files()->sync([]); |
| 50 | 50 | |
| 51 | - $this->getFiles($fields)->each(function ($file) use ($object) { |
|
| 51 | + $this->getFiles($fields)->each(function($file) use ($object) { |
|
| 52 | 52 | $object->files()->attach($file['id'], Arr::except($file, ['id'])); |
| 53 | 53 | }); |
| 54 | 54 | } |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | if (in_array($role, $this->model->filesParams ?? []) |
| 75 | 75 | || in_array($role, config('twill.block_editor.files', []))) { |
| 76 | 76 | |
| 77 | - Collection::make($filesForRole)->each(function ($file) use (&$files, $role, $locale) { |
|
| 77 | + Collection::make($filesForRole)->each(function($file) use (&$files, $role, $locale) { |
|
| 78 | 78 | $files->push([ |
| 79 | 79 | 'id' => $file['id'], |
| 80 | 80 | 'role' => $role, |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | if ($object->has('files')) { |
| 100 | 100 | foreach ($object->files->groupBy('pivot.role') as $role => $filesByRole) { |
| 101 | 101 | foreach ($filesByRole->groupBy('pivot.locale') as $locale => $filesByLocale) { |
| 102 | - $fields['files'][$locale][$role] = $filesByLocale->map(function ($file) { |
|
| 102 | + $fields['files'][$locale][$role] = $filesByLocale->map(function($file) { |
|
| 103 | 103 | return $file->toCmsArray(); |
| 104 | 104 | }); |
| 105 | 105 | } |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | try { |
| 34 | 34 | $blobUri = $request->input('bloburi'); |
| 35 | 35 | $method = $request->input('_method'); |
| 36 | - $permissions = '' ; |
|
| 36 | + $permissions = ''; |
|
| 37 | 37 | if (strtolower($method) === 'put') { |
| 38 | 38 | $permissions = 'w'; |
| 39 | 39 | } else if (strtolower($method) === 'delete') { |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | $now = new DateTime("now", new DateTimeZone("UTC")); |
| 49 | 49 | $expire = $now->modify('+15 min'); |
| 50 | 50 | |
| 51 | - $path = $this->config->get('filesystems.disks.' . $disk .'.container') . str_replace(azureEndpoint($disk), '', $blobUri); |
|
| 51 | + $path = $this->config->get('filesystems.disks.' . $disk . '.container') . str_replace(azureEndpoint($disk), '', $blobUri); |
|
| 52 | 52 | $sasUrl = $blobUri . '?' . $this->blobSharedAccessSignatureHelper->generateBlobServiceSharedAccessSignatureToken('b', $path, $permissions, $expire); |
| 53 | 53 | return $listener->uploadIsSigned($sasUrl, false); |
| 54 | 54 | } catch (\Exception $e) { |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | if (method_exists($query->getModel(), 'translations')) { |
| 20 | 20 | $locale = $locale == null ? app()->getLocale() : $locale; |
| 21 | 21 | |
| 22 | - $query->whereHas('translations', function ($query) use ($locale) { |
|
| 22 | + $query->whereHas('translations', function($query) use ($locale) { |
|
| 23 | 23 | $query->whereActive(true); |
| 24 | 24 | $query->whereLocale($locale); |
| 25 | 25 | |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | } |
| 29 | 29 | }); |
| 30 | 30 | |
| 31 | - return $query->with(['translations' => function ($query) use ($locale) { |
|
| 31 | + return $query->with(['translations' => function($query) use ($locale) { |
|
| 32 | 32 | $query->whereActive(true); |
| 33 | 33 | $query->whereLocale($locale); |
| 34 | 34 | |
@@ -48,14 +48,14 @@ discard block |
||
| 48 | 48 | $locale = $locale == null ? app()->getLocale() : $locale; |
| 49 | 49 | |
| 50 | 50 | return $query |
| 51 | - ->join($translationTable, function (JoinClause $join) use ($translationTable, $localeKey, $table, $keyName) { |
|
| 51 | + ->join($translationTable, function(JoinClause $join) use ($translationTable, $localeKey, $table, $keyName) { |
|
| 52 | 52 | $join |
| 53 | - ->on($translationTable.'.'.$this->getRelationKey(), '=', $table.'.'.$keyName) |
|
| 54 | - ->where($translationTable.'.'.$localeKey, $this->locale()); |
|
| 53 | + ->on($translationTable . '.' . $this->getRelationKey(), '=', $table . '.' . $keyName) |
|
| 54 | + ->where($translationTable . '.' . $localeKey, $this->locale()); |
|
| 55 | 55 | }) |
| 56 | - ->where($translationTable.'.'.$this->getLocaleKey(), $locale) |
|
| 57 | - ->orderBy($translationTable.'.'.$orderField, $orderType) |
|
| 58 | - ->select($table.'.*') |
|
| 56 | + ->where($translationTable . '.' . $this->getLocaleKey(), $locale) |
|
| 57 | + ->orderBy($translationTable . '.' . $orderField, $orderType) |
|
| 58 | + ->select($table . '.*') |
|
| 59 | 59 | ->with('translations'); |
| 60 | 60 | } |
| 61 | 61 | |
@@ -91,14 +91,14 @@ discard block |
||
| 91 | 91 | |
| 92 | 92 | public function getActiveLanguages() |
| 93 | 93 | { |
| 94 | - return $this->translations->map(function ($translation) { |
|
| 94 | + return $this->translations->map(function($translation) { |
|
| 95 | 95 | return [ |
| 96 | 96 | 'shortlabel' => strtoupper($translation->locale), |
| 97 | 97 | 'label' => getLanguageLabelFromLocaleCode($translation->locale), |
| 98 | 98 | 'value' => $translation->locale, |
| 99 | 99 | 'published' => $translation->active ?? false, |
| 100 | 100 | ]; |
| 101 | - })->sortBy(function ($translation) { |
|
| 101 | + })->sortBy(function($translation) { |
|
| 102 | 102 | $localesOrdered = config('translatable.locales'); |
| 103 | 103 | return array_search($translation['value'], $localesOrdered); |
| 104 | 104 | })->values(); |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | |
| 107 | 107 | public function translatedAttribute($key) |
| 108 | 108 | { |
| 109 | - return $this->translations->mapWithKeys(function ($translation) use ($key) { |
|
| 109 | + return $this->translations->mapWithKeys(function($translation) use ($key) { |
|
| 110 | 110 | return [$translation->locale => $this->translate($translation->locale)->$key]; |
| 111 | 111 | }); |
| 112 | 112 | } |