@@ -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(); |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | continue; |
189 | 189 | } |
190 | 190 | |
191 | - $child = $children->first(function ($c) use ($reference) { |
|
191 | + $child = $children->first(function($c) use ($reference) { |
|
192 | 192 | return $c->flatReference()->get() == $reference; |
193 | 193 | }); |
194 | 194 | |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | private function stripTagsBlacklist($value, $blacklist = []) |
240 | 240 | { |
241 | 241 | foreach ($blacklist as $tag) { |
242 | - $value = preg_replace('/<\/?' . $tag . '(.|\s)*?>/', '', $value); |
|
242 | + $value = preg_replace('/<\/?'.$tag.'(.|\s)*?>/', '', $value); |
|
243 | 243 | } |
244 | 244 | |
245 | 245 | return $value; |
@@ -47,8 +47,8 @@ discard block |
||
47 | 47 | { |
48 | 48 | $requestInput = request()->all(); |
49 | 49 | |
50 | - return array_reduce($this->all(), function ($carry, Filter $filter) use ($requestInput) { |
|
51 | - return $carry . $filter->render($requestInput); |
|
50 | + return array_reduce($this->all(), function($carry, Filter $filter) use ($requestInput) { |
|
51 | + return $carry.$filter->render($requestInput); |
|
52 | 52 | }, ''); |
53 | 53 | } |
54 | 54 | |
@@ -64,14 +64,14 @@ discard block |
||
64 | 64 | |
65 | 65 | public function keys(): array |
66 | 66 | { |
67 | - return array_map(function (Filter $filter) { |
|
67 | + return array_map(function(Filter $filter) { |
|
68 | 68 | return $filter->key(); |
69 | 69 | }, $this->filters); |
70 | 70 | } |
71 | 71 | |
72 | 72 | private function validateFilters(array $filters) |
73 | 73 | { |
74 | - array_map(function (Filter $filter) { |
|
74 | + array_map(function(Filter $filter) { |
|
75 | 75 | }, $filters); |
76 | 76 | } |
77 | 77 | |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | public function offsetSet($offset, $value) |
98 | 98 | { |
99 | 99 | if (!$value instanceof Filter) { |
100 | - throw new \InvalidArgumentException('Passed value must be of type ' . Filter::class); |
|
100 | + throw new \InvalidArgumentException('Passed value must be of type '.Filter::class); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | $this->filters[$offset] = $value; |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | |
116 | 116 | private function sanitizeFilters(array $filters) |
117 | 117 | { |
118 | - return array_map(function ($filter) { |
|
118 | + return array_map(function($filter) { |
|
119 | 119 | if (is_string($filter) && class_exists($filter)) { |
120 | 120 | return $filter::init(); |
121 | 121 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | |
49 | 49 | public function render(array $requestInput = []): string |
50 | 50 | { |
51 | - $path = $this->viewpath ?? 'chief::back._filters.' . $this->type; |
|
51 | + $path = $this->viewpath ?? 'chief::back._filters.'.$this->type; |
|
52 | 52 | $this->default($requestInput[$this->name] ?? null); |
53 | 53 | |
54 | 54 | return view($path, ['filter' => $this])->render(); |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | } |
63 | 63 | |
64 | 64 | if (!in_array($name, ['name', 'label', 'description', 'query', 'viewpath', 'default'])) { |
65 | - throw new \InvalidArgumentException('Cannot set value by [' . $name . '].'); |
|
65 | + throw new \InvalidArgumentException('Cannot set value by ['.$name.'].'); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | $this->values[$name] = $arguments[0]; |
@@ -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 ''; |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | } |
32 | 32 | |
33 | 33 | // Custom set methods - default is the generic setField() method. |
34 | - $methodName = 'set' . ucfirst(Str::camel($field->getKey())) . 'Field'; |
|
34 | + $methodName = 'set'.ucfirst(Str::camel($field->getKey())).'Field'; |
|
35 | 35 | (method_exists($this, $methodName)) |
36 | 36 | ? $this->$methodName($field, $request) |
37 | 37 | : $this->setField($field, $request); |
@@ -48,8 +48,8 @@ discard block |
||
48 | 48 | |
49 | 49 | protected function detectCustomSaveMethods(Field $field): bool |
50 | 50 | { |
51 | - $saveMethodByKey = 'save' . ucfirst(Str::camel($field->getKey())) . 'Field'; |
|
52 | - $saveMethodByType = 'save' . ucfirst(Str::camel($field->getType()->get())) . 'Fields'; |
|
51 | + $saveMethodByKey = 'save'.ucfirst(Str::camel($field->getKey())).'Field'; |
|
52 | + $saveMethodByType = 'save'.ucfirst(Str::camel($field->getType()->get())).'Fields'; |
|
53 | 53 | |
54 | 54 | foreach ([$saveMethodByKey, $saveMethodByType] as $saveMethod) { |
55 | 55 | foreach ($this->assistants() as $assistant) { |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | |
97 | 97 | // Make our media fields able to be translatable as well... |
98 | 98 | if ($field->ofType(FieldType::FILE, FieldType::IMAGE)) { |
99 | - throw new \Exception('Cannot process the ' . $field->getKey() . ' media field. Currently no support for translatable media files. We should fix this!'); |
|
99 | + throw new \Exception('Cannot process the '.$field->getKey().' media field. Currently no support for translatable media files. We should fix this!'); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | // Okay so this is a bit odd but since all translations are expected to be inside the trans |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | if ($item->ofType(static::TYPE_INTERNAL) && $page = $item->page) { |
104 | 104 | if ($page->isArchived()) { |
105 | 105 | unset($items[$k]); |
106 | - } else { |
|
106 | + }else { |
|
107 | 107 | $item->url = self::composePageUrl($item, $page); |
108 | 108 | $item->page_label = $page->menuLabel(); |
109 | 109 | $item->hidden_in_menu = $page->hidden_in_menu; |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | 'id' => $node->id, |
153 | 153 | 'type' => $node->type, |
154 | 154 | 'label' => $node->label, |
155 | - 'page_label' => $node->page_label, // Extra info when dealing with internal links |
|
155 | + 'page_label' => $node->page_label, // Extra info when dealing with internal links |
|
156 | 156 | 'url' => $node->url, |
157 | 157 | 'order' => $node->order, |
158 | 158 | 'page_id' => $node->page_id, |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | |
62 | 62 | public static function models(bool $onlySingles = false, Model $ignoredModel = null, $online = true) |
63 | 63 | { |
64 | - $models = chiefMemoize('all-online-models', function () use ($onlySingles, $online) { |
|
64 | + $models = chiefMemoize('all-online-models', function() use ($onlySingles, $online) { |
|
65 | 65 | $builder = UrlRecord::whereNull('redirect_id') |
66 | 66 | ->select('model_type', 'model_id') |
67 | 67 | ->groupBy('model_type', 'model_id'); |
@@ -70,11 +70,11 @@ discard block |
||
70 | 70 | $builder->where('model_type', 'singles'); |
71 | 71 | } |
72 | 72 | |
73 | - return $builder->get()->mapToGroups(function ($record) { |
|
73 | + return $builder->get()->mapToGroups(function($record) { |
|
74 | 74 | return [$record->model_type => $record->model_id]; |
75 | - })->map(function ($record, $key) { |
|
75 | + })->map(function($record, $key) { |
|
76 | 76 | return Morphables::instance($key)->find($record->toArray()); |
77 | - })->map->reject(function ($model) use ($online) { |
|
77 | + })->map->reject(function($model) use ($online) { |
|
78 | 78 | if ($online) { |
79 | 79 | return is_null($model) || !$model->isPublished(); |
80 | 80 | } // Invalid references to archived or removed models where url record still exists. |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | }, [$onlySingles]); |
85 | 85 | |
86 | 86 | if ($ignoredModel) { |
87 | - $models = $models->reject(function ($model) use ($ignoredModel) { |
|
87 | + $models = $models->reject(function($model) use ($ignoredModel) { |
|
88 | 88 | return (get_class($model) === get_class($ignoredModel) && $model->id === $ignoredModel->id); |
89 | 89 | }); |
90 | 90 | } |