@@ -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 | } |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | { |
| 37 | 37 | // Constraints |
| 38 | 38 | if (!isset($values['action'])) { |
| 39 | - throw new \InvalidArgumentException('Set reference array is missing required values for the "action" keys. Given: ' . print_r($values, true)); |
|
| 39 | + throw new \InvalidArgumentException('Set reference array is missing required values for the "action" keys. Given: '.print_r($values, true)); |
|
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | return new static( |
@@ -51,14 +51,14 @@ discard block |
||
| 51 | 51 | { |
| 52 | 52 | $sets = config('thinktomorrow.chief.sets', []); |
| 53 | 53 | |
| 54 | - return collect($sets)->map(function ($set, $key) { |
|
| 54 | + return collect($sets)->map(function($set, $key) { |
|
| 55 | 55 | return SetReference::fromArray($key, $set); |
| 56 | 56 | }); |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | public static function find($key): ?SetReference |
| 60 | 60 | { |
| 61 | - return static::all()->filter(function ($ref) use ($key) { |
|
| 61 | + return static::all()->filter(function($ref) use ($key) { |
|
| 62 | 62 | return $ref->key() == $key; |
| 63 | 63 | })->first(); |
| 64 | 64 | } |
@@ -150,11 +150,11 @@ discard block |
||
| 150 | 150 | private static function validateAction($class, $method) |
| 151 | 151 | { |
| 152 | 152 | if (!class_exists($class)) { |
| 153 | - throw new \InvalidArgumentException('The class [' . $class . '] isn\'t a valid class reference or does not exist in the chief-settings.sets config entry.'); |
|
| 153 | + throw new \InvalidArgumentException('The class ['.$class.'] isn\'t a valid class reference or does not exist in the chief-settings.sets config entry.'); |
|
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | if (!method_exists($class, $method)) { |
| 157 | - throw new \InvalidArgumentException('The method [' . $method . '] does not exist on the class [' . $class . ']. Make sure you provide a valid method to the action value in the chief-settings.sets config entry.'); |
|
| 157 | + throw new \InvalidArgumentException('The method ['.$method.'] does not exist on the class ['.$class.']. Make sure you provide a valid method to the action value in the chief-settings.sets config entry.'); |
|
| 158 | 158 | } |
| 159 | 159 | } |
| 160 | 160 | |
@@ -35,12 +35,12 @@ |
||
| 35 | 35 | |
| 36 | 36 | public function toReference(): SetReference |
| 37 | 37 | { |
| 38 | - $reference = SetReference::all()->first(function ($setReference) { |
|
| 38 | + $reference = SetReference::all()->first(function($setReference) { |
|
| 39 | 39 | return $setReference->key() == $this->key; |
| 40 | 40 | }); |
| 41 | 41 | |
| 42 | 42 | if (!$reference) { |
| 43 | - throw new \Exception('No query set found by key [' . $this->key . ']. Make sure that this ' . $this->key . ' set is added to the chief.sets config array.'); |
|
| 43 | + throw new \Exception('No query set found by key ['.$this->key.']. Make sure that this '.$this->key.' set is added to the chief.sets config array.'); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | return $reference; |
@@ -26,15 +26,15 @@ |
||
| 26 | 26 | { |
| 27 | 27 | $abilities = ['view', 'create', 'update', 'delete']; |
| 28 | 28 | |
| 29 | - return array_map(function ($val) use ($scope) { |
|
| 30 | - return $val . '-' . $scope; |
|
| 29 | + return array_map(function($val) use ($scope) { |
|
| 30 | + return $val.'-'.$scope; |
|
| 31 | 31 | }, $abilities); |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | public static function getPermissionsForIndex() |
| 35 | 35 | { |
| 36 | 36 | $permissions = $temp = []; |
| 37 | - self::all()->each(function ($permission) use (&$permissions, &$temp) { |
|
| 37 | + self::all()->each(function($permission) use (&$permissions, &$temp) { |
|
| 38 | 38 | $model = explode("_", $permission->name, 2)[1]; |
| 39 | 39 | $temp[$model][$permission->id] = explode("_", $permission->name, 2)[0]; |
| 40 | 40 | $permissions = $temp; |
@@ -81,7 +81,7 @@ |
||
| 81 | 81 | $this->addModelToCollection($i, $child); |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - return $this->sets->values()->map(function (ViewableContract $child) { |
|
| 84 | + return $this->sets->values()->map(function(ViewableContract $child) { |
|
| 85 | 85 | return ($this->withSnippets && method_exists($child, 'withSnippets')) |
| 86 | 86 | ? $child->withSnippets()->setViewParent($this->parent)->renderView() |
| 87 | 87 | : $child->setViewParent($this->parent)->renderView(); |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | } |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - return static::$loadedSnippets = new self($files->map(function (SplFileInfo $file) { |
|
| 39 | + return static::$loadedSnippets = new self($files->map(function(SplFileInfo $file) { |
|
| 40 | 40 | $path = $file->getRealPath(); |
| 41 | 41 | |
| 42 | 42 | if (0 === strpos($path, resource_path('views')) && false !== strpos($file->getBasename(), '.blade.php')) { |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | { |
| 55 | 55 | $loadedSnippets = static::load(); |
| 56 | 56 | |
| 57 | - return $loadedSnippets->first(function (Snippet $snippet) use ($key) { |
|
| 57 | + return $loadedSnippets->first(function(Snippet $snippet) use ($key) { |
|
| 58 | 58 | return $snippet->key() == $key; |
| 59 | 59 | }); |
| 60 | 60 | } |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | |
| 86 | 86 | public function toClips(): array |
| 87 | 87 | { |
| 88 | - return $this->map(function ($snippet) { |
|
| 88 | + return $this->map(function($snippet) { |
|
| 89 | 89 | return [$snippet->label(), $snippet->placeholder()]; |
| 90 | 90 | })->toArray(); |
| 91 | 91 | } |
@@ -66,7 +66,7 @@ |
||
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | if (config('thinktomorrow.chief.strict')) { |
| 69 | - throw new NotFoundViewKey('Missing view key. Please add a [viewKey] property to ' . get_class($this)); |
|
| 69 | + throw new NotFoundViewKey('Missing view key. Please add a [viewKey] property to '.get_class($this)); |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | return ''; |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | private function addCustomValidationMessage($attribute, $params, $validator): void |
| 39 | 39 | { |
| 40 | 40 | $validator->setCustomMessages([ |
| 41 | - 'filefield_dimensions' => ':attribute heeft niet de juiste afmetingen: ' . implode(', ', $params), |
|
| 41 | + 'filefield_dimensions' => ':attribute heeft niet de juiste afmetingen: '.implode(', ', $params), |
|
| 42 | 42 | ]); |
| 43 | 43 | |
| 44 | 44 | if (!isset($validator->customAttributes[$attribute])) { |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | private function addCustomValidationMessage($attribute, $params, $validator): void |
| 39 | 39 | { |
| 40 | 40 | $validator->setCustomMessages([ |
| 41 | - 'filefield_min' => ':attribute is te klein en dient groter te zijn dan ' . implode(',', $params) . 'Kb.', |
|
| 41 | + 'filefield_min' => ':attribute is te klein en dient groter te zijn dan '.implode(',', $params).'Kb.', |
|
| 42 | 42 | ]); |
| 43 | 43 | |
| 44 | 44 | if (!isset($validator->customAttributes[$attribute])) { |