Test Setup Failed
Push — dependabot/npm_and_yarn/ellipt... ( 63fd50 )
by
unknown
08:23
created
src/Menu/MenuItem.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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,
Please login to merge, or discard this patch.
src/Media/Application/FileFieldHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
src/Fields/ValidationRules/FileFieldDimensionsRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
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])) {
Please login to merge, or discard this patch.
src/Fields/ValidationRules/FileFieldMinRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
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])) {
Please login to merge, or discard this patch.
src/Fields/ValidationRules/ImageFieldDimensionsRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
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])) {
Please login to merge, or discard this patch.
src/Fields/ValidationRules/FileFieldMaxRule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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])) {
Please login to merge, or discard this patch.
src/Fields/ValidationRules/ImageFieldMaxRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
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])) {
Please login to merge, or discard this patch.
src/Fields/ValidationRules/FileFieldMimetypesRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     private function addCustomValidationMessage($attribute, $params, $validator): void
39 39
     {
40 40
         $validator->setCustomMessages([
41
-            'filefield_mimetypes' => ':attribute is niet het juiste bestandstype. Volgende types zijn geldig: ' . implode(', ', $params),
41
+            'filefield_mimetypes' => ':attribute is niet het juiste bestandstype. Volgende types zijn geldig: '.implode(', ', $params),
42 42
         ]);
43 43
 
44 44
         if (!isset($validator->customAttributes[$attribute])) {
Please login to merge, or discard this patch.
src/Fields/ValidationRules/ImageFieldMinRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     private function addCustomValidationMessage($attribute, $params, $validator): void
55 55
     {
56 56
         $validator->setCustomMessages([
57
-            'imagefield_min' => ':attribute is te klein en dient groter te zijn dan ' . implode(',', $params) . 'Kb.',
57
+            'imagefield_min' => ':attribute is te klein en dient groter te zijn dan '.implode(',', $params).'Kb.',
58 58
         ]);
59 59
 
60 60
         if (!isset($validator->customAttributes[$attribute])) {
Please login to merge, or discard this patch.