@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | $manifestPath = '/chief-assets/back'; |
21 | 21 | |
22 | 22 | // Manifest expects each entry to start with a leading slash - we make sure to deduplicate the manifest path. |
23 | - $entry = str_replace($manifestPath, '', '/' . ltrim($filepath, '/')); |
|
23 | + $entry = str_replace($manifestPath, '', '/'.ltrim($filepath, '/')); |
|
24 | 24 | |
25 | 25 | try { |
26 | 26 | // Paths should be given relative to the manifestpath so make sure to remove the basepath |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | } catch (\Exception $e) { |
29 | 29 | \Illuminate\Support\Facades\Log::error($e); |
30 | 30 | |
31 | - return $manifestPath . $entry; |
|
31 | + return $manifestPath.$entry; |
|
32 | 32 | } |
33 | 33 | } |
34 | 34 | } |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | } |
115 | 115 | $teaser = substr($text, 0, $max); |
116 | 116 | |
117 | - return strlen($text) <= $max ? $teaser : $teaser . $ending; |
|
117 | + return strlen($text) <= $max ? $teaser : $teaser.$ending; |
|
118 | 118 | } |
119 | 119 | } |
120 | 120 | |
@@ -245,16 +245,16 @@ discard block |
||
245 | 245 | 'fragment', |
246 | 246 | ], null), $parsed_url, $overrides); |
247 | 247 | |
248 | - $scheme = $parsed_url['scheme'] ? $parsed_url['scheme'] . '://' : null; |
|
249 | - $port = $parsed_url['port'] ? ':' . $parsed_url['port'] : null; |
|
250 | - $fragment = $parsed_url['fragment'] ? '#' . $parsed_url['fragment'] : null; |
|
248 | + $scheme = $parsed_url['scheme'] ? $parsed_url['scheme'].'://' : null; |
|
249 | + $port = $parsed_url['port'] ? ':'.$parsed_url['port'] : null; |
|
250 | + $fragment = $parsed_url['fragment'] ? '#'.$parsed_url['fragment'] : null; |
|
251 | 251 | |
252 | - $baseurl = $scheme . $parsed_url['host'] . $port . $parsed_url['path']; |
|
252 | + $baseurl = $scheme.$parsed_url['host'].$port.$parsed_url['path']; |
|
253 | 253 | $current_query = []; |
254 | 254 | |
255 | 255 | $_query = explode('&', $parsed_url['query']); |
256 | 256 | |
257 | - array_map(function ($v) use (&$current_query) { |
|
257 | + array_map(function($v) use (&$current_query) { |
|
258 | 258 | if (!$v) { |
259 | 259 | return; |
260 | 260 | } |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | |
273 | 273 | $query = urldecode(http_build_query(array_merge($current_query, $query_params))); |
274 | 274 | |
275 | - return $baseurl . '?' . $query . $fragment; |
|
275 | + return $baseurl.'?'.$query.$fragment; |
|
276 | 276 | } |
277 | 277 | } |
278 | 278 |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | { |
20 | 20 | $cachableParameters = $this->convertToCachableParameters($parameters); |
21 | 21 | |
22 | - $cachekey = $this->baseKey . ':' . md5(implode('', $cachableParameters)); |
|
22 | + $cachekey = $this->baseKey.':'.md5(implode('', $cachableParameters)); |
|
23 | 23 | |
24 | 24 | if (isset(static::$cache[$cachekey])) { |
25 | 25 | return static::$cache[$cachekey]; |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | { |
38 | 38 | foreach ($parameters as $key => $value) { |
39 | 39 | if ($value instanceof Model) { |
40 | - $parameters[$key] = get_class($value) . '@' . $value->id; |
|
40 | + $parameters[$key] = get_class($value).'@'.$value->id; |
|
41 | 41 | } |
42 | 42 | } |
43 | 43 |
@@ -49,7 +49,7 @@ |
||
49 | 49 | } |
50 | 50 | |
51 | 51 | if (isset($customRules[$rule])) { |
52 | - $rules[$k] = $customRules[$rule] . ($params ? ':' . $params : ''); |
|
52 | + $rules[$k] = $customRules[$rule].($params ? ':'.$params : ''); |
|
53 | 53 | } |
54 | 54 | } |
55 | 55 |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | } |
95 | 95 | |
96 | 96 | foreach ($replacements as $replacement) { |
97 | - $newKeySet[] = str_replace(':' . $placeholder, $replacement, $key); |
|
97 | + $newKeySet[] = str_replace(':'.$placeholder, $replacement, $key); |
|
98 | 98 | } |
99 | 99 | } |
100 | 100 | |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | |
143 | 143 | // Remove all 'trans' entries for this locale |
144 | 144 | foreach ($filteredKeys as $i => $key) { |
145 | - if (Str::startsWith($key, 'trans.' . $locale)) { |
|
145 | + if (Str::startsWith($key, 'trans.'.$locale)) { |
|
146 | 146 | unset($filteredKeys[$i]); |
147 | 147 | } |
148 | 148 | } |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | $payload = Arr::get($this->payload, $key, '_notfound_'); |
164 | 164 | |
165 | 165 | // If the payload is empty and this is not the entry for the required locale |
166 | - if ($payload !== '_notfound_' && !$payload && !Str::endsWith($key, '.' . $this->requiredLocale)) { |
|
166 | + if ($payload !== '_notfound_' && !$payload && !Str::endsWith($key, '.'.$this->requiredLocale)) { |
|
167 | 167 | unset($filteredKeys[$i]); |
168 | 168 | } |
169 | 169 | } |
@@ -79,7 +79,7 @@ |
||
79 | 79 | return $value; |
80 | 80 | } |
81 | 81 | |
82 | - $value = str_replace('.', '][', $value) . ']'; |
|
82 | + $value = str_replace('.', '][', $value).']'; |
|
83 | 83 | |
84 | 84 | return substr_replace($value, '', strpos($value, ']'), 1); |
85 | 85 | } |
@@ -56,7 +56,7 @@ |
||
56 | 56 | protected function validateAssetMimetypes(Asset $asset, $parameters) |
57 | 57 | { |
58 | 58 | return (in_array($asset->getMimeType(), $parameters) || |
59 | - in_array(explode('/', $asset->getMimeType())[0] . '/*', $parameters)); |
|
59 | + in_array(explode('/', $asset->getMimeType())[0].'/*', $parameters)); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | protected function validateAssetMax(Asset $asset, $parameters) |
@@ -39,7 +39,7 @@ |
||
39 | 39 | |
40 | 40 | public function get(): string |
41 | 41 | { |
42 | - return $this->className . '@' . $this->id; |
|
42 | + return $this->className.'@'.$this->id; |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | public function equals($other): bool |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | public static function fromString(string $reference): FlatReference |
8 | 8 | { |
9 | 9 | if (false == strpos($reference, '@')) { |
10 | - throw new \InvalidArgumentException('Invalid reference composition. A flat reference should honour schema <class>@<id>. [' . $reference . '] was passed instead.'); |
|
10 | + throw new \InvalidArgumentException('Invalid reference composition. A flat reference should honour schema <class>@<id>. ['.$reference.'] was passed instead.'); |
|
11 | 11 | } |
12 | 12 | |
13 | 13 | list($className, $id) = explode('@', $reference); |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | $instance->{$instance->getKeyName()} = $id; |
17 | 17 | |
18 | 18 | if (!method_exists($instance, 'flatReference')) { |
19 | - throw new \InvalidArgumentException('Instance created from model reference [' . $reference . '] was expected to have a method of flatReference() but is has not.'); |
|
19 | + throw new \InvalidArgumentException('Instance created from model reference ['.$reference.'] was expected to have a method of flatReference() but is has not.'); |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | return $instance->flatReference(); |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | // If no view has been created for this page collection, we try once again to fetch the content value if any. This will silently fail |
51 | 51 | // if no content value is present. We don't consider the 'content' attribute to be a default as we do for module. |
52 | - return $this->map(function ($item) { |
|
52 | + return $this->map(function($item) { |
|
53 | 53 | return ($this->viewParent && $item instanceof ViewableContract) |
54 | 54 | ? $item->setViewParent($this->viewParent)->renderView() |
55 | 55 | : ($item->content ?? ''); |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | { |
83 | 83 | $currentPage = $currentPage ?? request()->get('page', 1); |
84 | 84 | $path = request()->path(); |
85 | - $items = array_slice($this->all(), ($currentPage - 1) * $perPage); |
|
85 | + $items = array_slice($this->all(), ($currentPage-1) * $perPage); |
|
86 | 86 | |
87 | 87 | return (new \Illuminate\Pagination\Paginator($items, $perPage ?? $this->paginateSetting('perPage', '12'), $currentPage))->setPath($path); |
88 | 88 | } |
@@ -98,8 +98,8 @@ discard block |
||
98 | 98 | public function paginate($perPage = null, $currentPage = null): Paginator |
99 | 99 | { |
100 | 100 | $currentPage = $currentPage ?? request()->get('page', 1); |
101 | - $path = '/' . request()->path(); |
|
102 | - $items = array_slice($this->all(), ($currentPage - 1) * $perPage, $perPage); |
|
101 | + $path = '/'.request()->path(); |
|
102 | + $items = array_slice($this->all(), ($currentPage-1) * $perPage, $perPage); |
|
103 | 103 | |
104 | 104 | return (new \Illuminate\Pagination\LengthAwarePaginator($items, $this->paginateSetting('total', $this->count()), $perPage ?? $this->paginateSetting('perPage', '12'), $currentPage))->setPath($path); |
105 | 105 | } |