@@ -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 ''; |
@@ -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, |
@@ -14,7 +14,7 @@ |
||
14 | 14 | { |
15 | 15 | public function handle(HasAsset $model, MediaField $field, Request $request): void |
16 | 16 | { |
17 | - foreach ([$request->file('files.' . $field->getName(), []), $request->input('files.' . $field->getName(), [])] as $requestPayload) { |
|
17 | + foreach ([$request->file('files.'.$field->getName(), []), $request->input('files.'.$field->getName(), [])] as $requestPayload) { |
|
18 | 18 | foreach ($requestPayload as $locale => $values) { |
19 | 19 | $this->handlePayload($model, $field, $locale, $values); |
20 | 20 | } |
@@ -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])) { |
@@ -76,7 +76,7 @@ |
||
76 | 76 | private function addCustomValidationMessage($attribute, $params, $validator): void |
77 | 77 | { |
78 | 78 | $validator->setCustomMessages([ |
79 | - 'imagefield_dimensions' => ':attribute heeft niet de juiste afmetingen: ' . implode(', ', $this->humanReadableParams($params)), |
|
79 | + 'imagefield_dimensions' => ':attribute heeft niet de juiste afmetingen: '.implode(', ', $this->humanReadableParams($params)), |
|
80 | 80 | ]); |
81 | 81 | |
82 | 82 | if (!isset($validator->customAttributes[$attribute])) { |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | protected function getSize($attribute, $value) |
42 | 42 | { |
43 | 43 | if (!$value instanceof File) { |
44 | - throw new \InvalidArgumentException('Value is expected to be of type ' . File::class); |
|
44 | + throw new \InvalidArgumentException('Value is expected to be of type '.File::class); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | return $value->getSize() / 1024; |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | private function addCustomValidationMessage($attribute, $params, $validator): void |
56 | 56 | { |
57 | 57 | $validator->setCustomMessages([ |
58 | - 'filefield_max' => ':attribute is te groot en dient kleiner te zijn dan ' . implode(',', $params) . 'Kb.', |
|
58 | + 'filefield_max' => ':attribute is te groot en dient kleiner te zijn dan '.implode(',', $params).'Kb.', |
|
59 | 59 | ]); |
60 | 60 | |
61 | 61 | if (!isset($validator->customAttributes[$attribute])) { |
@@ -59,7 +59,7 @@ |
||
59 | 59 | private function addCustomValidationMessage($attribute, $params, $validator): void |
60 | 60 | { |
61 | 61 | $validator->setCustomMessages([ |
62 | - 'imagefield_max' => ':attribute is te groot en dient kleiner te zijn dan ' . implode(',', $params) . 'Kb.', |
|
62 | + 'imagefield_max' => ':attribute is te groot en dient kleiner te zijn dan '.implode(',', $params).'Kb.', |
|
63 | 63 | ]); |
64 | 64 | |
65 | 65 | if (!isset($validator->customAttributes[$attribute])) { |