@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | $empty = true; |
| 75 | 75 | |
| 76 | 76 | foreach ($values as $value) { |
| 77 | - if (! $value || !trim($value)) { |
|
| 77 | + if (!$value || !trim($value)) { |
|
| 78 | 78 | continue; |
| 79 | 79 | } |
| 80 | 80 | $empty = false; |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | } |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | -if (! function_exists('contract')) { |
|
| 87 | +if (!function_exists('contract')) { |
|
| 88 | 88 | function contract($instance, $contract) |
| 89 | 89 | { |
| 90 | 90 | return $instance instanceof $contract; |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | $text = cleanupHTML($text, $clean); |
| 114 | 114 | } |
| 115 | 115 | $teaser = substr($text, 0, $max); |
| 116 | - return strlen($text) <= $max ? $teaser : $teaser . $ending; |
|
| 116 | + return strlen($text) <= $max ? $teaser : $teaser.$ending; |
|
| 117 | 117 | } |
| 118 | 118 | } |
| 119 | 119 | |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | * htmlPurifier converts characters to their encode equivalents. This is something |
| 172 | 172 | * that we need to reverse after the htmlPurifier cleanup. |
| 173 | 173 | */ |
| 174 | - $value = str_replace('&', '&', $value); |
|
| 174 | + $value = str_replace('&', '&', $value); |
|
| 175 | 175 | |
| 176 | 176 | return $value; |
| 177 | 177 | } |
@@ -239,16 +239,16 @@ discard block |
||
| 239 | 239 | 'scheme', 'host', 'port', 'path', 'query', 'fragment' |
| 240 | 240 | ], null), $parsed_url, $overrides); |
| 241 | 241 | |
| 242 | - $scheme = $parsed_url['scheme'] ? $parsed_url['scheme'] . '://' : null; |
|
| 243 | - $port = $parsed_url['port'] ? ':' . $parsed_url['port'] : null; |
|
| 244 | - $fragment = $parsed_url['fragment'] ? '#' . $parsed_url['fragment'] : null; |
|
| 242 | + $scheme = $parsed_url['scheme'] ? $parsed_url['scheme'].'://' : null; |
|
| 243 | + $port = $parsed_url['port'] ? ':'.$parsed_url['port'] : null; |
|
| 244 | + $fragment = $parsed_url['fragment'] ? '#'.$parsed_url['fragment'] : null; |
|
| 245 | 245 | |
| 246 | - $baseurl = $scheme . $parsed_url['host'] . $port . $parsed_url['path']; |
|
| 246 | + $baseurl = $scheme.$parsed_url['host'].$port.$parsed_url['path']; |
|
| 247 | 247 | $current_query = []; |
| 248 | 248 | |
| 249 | 249 | $_query = explode('&', $parsed_url['query']); |
| 250 | 250 | |
| 251 | - array_map(function ($v) use (&$current_query) { |
|
| 251 | + array_map(function($v) use (&$current_query) { |
|
| 252 | 252 | if (!$v) { |
| 253 | 253 | return; |
| 254 | 254 | } |
@@ -266,7 +266,7 @@ discard block |
||
| 266 | 266 | |
| 267 | 267 | $query = urldecode(http_build_query(array_merge($current_query, $query_params))); |
| 268 | 268 | |
| 269 | - return $baseurl . '?' . $query . $fragment; |
|
| 269 | + return $baseurl.'?'.$query.$fragment; |
|
| 270 | 270 | } |
| 271 | 271 | } |
| 272 | 272 | |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | |
| 47 | 47 | // 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 |
| 48 | 48 | // if no content value is present. We don't consider the 'content' attribute to be a default as we do for module. |
| 49 | - return $this->map(function ($item) { |
|
| 49 | + return $this->map(function($item) { |
|
| 50 | 50 | return ($this->viewParent && $item instanceof ViewableContract) |
| 51 | 51 | ? $item->setViewParent($this->viewParent)->renderView() |
| 52 | 52 | : ($item->content ?? ''); |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | { |
| 80 | 80 | $currentPage = $currentPage ?? request()->get('page', 1); |
| 81 | 81 | $path = request()->path(); |
| 82 | - $items = array_slice($this->all(), ($currentPage - 1) * $perPage); |
|
| 82 | + $items = array_slice($this->all(), ($currentPage-1) * $perPage); |
|
| 83 | 83 | |
| 84 | 84 | return (new \Illuminate\Pagination\Paginator($items, $perPage, $currentPage))->setPath($path); |
| 85 | 85 | } |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | { |
| 97 | 97 | $currentPage = $currentPage ?? request()->get('page', 1); |
| 98 | 98 | $path = '/'.request()->path(); |
| 99 | - $items = array_slice($this->all(), ($currentPage - 1) * $perPage, $perPage); |
|
| 99 | + $items = array_slice($this->all(), ($currentPage-1) * $perPage, $perPage); |
|
| 100 | 100 | |
| 101 | 101 | return (new \Illuminate\Pagination\LengthAwarePaginator($items, $this->count(), $perPage, $currentPage))->setPath($path); |
| 102 | 102 | } |
@@ -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 ''; |
@@ -136,8 +136,8 @@ discard block |
||
| 136 | 136 | { |
| 137 | 137 | $classKey = get_class($this); |
| 138 | 138 | if (property_exists($this, 'labelSingular')) { |
| 139 | - $labelSingular = $this->labelSingular; |
|
| 140 | - } else { |
|
| 139 | + $labelSingular = $this->labelSingular; |
|
| 140 | + }else { |
|
| 141 | 141 | $labelSingular = Str::singular($classKey); |
| 142 | 142 | } |
| 143 | 143 | |