Passed
Push — 0.4.6 ( 4806d2...562f7b )
by Philippe
08:31
created
src/Fields/Fields.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
                 continue;
67 67
             }
68 68
 
69
-            $method = 'get' . ucfirst($key);
69
+            $method = 'get'.ucfirst($key);
70 70
 
71 71
             // Reject from list if value does not match expected one
72 72
             if ($value && $value == $field->$method()) {
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
     public function offsetSet($offset, $value)
125 125
     {
126 126
         if (!$value instanceof Field) {
127
-            throw new \InvalidArgumentException('Passed value must be of type ' . Field::class);
127
+            throw new \InvalidArgumentException('Passed value must be of type '.Field::class);
128 128
         }
129 129
 
130 130
         $this->fields[$offset] = $value;
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
 
155 155
     private function validateFields(array $fields)
156 156
     {
157
-        array_map(function (Field $field) {
157
+        array_map(function(Field $field) {
158 158
         }, $fields);
159 159
     }
160 160
 
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
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     private function addCustomValidationMessage($attribute, $params, $validator): void
41 41
     {
42 42
         $validator->setCustomMessages([
43
-            'filefield_mimetypes' => 'De :attribute is niet het juiste bestandstype. Volgende types zijn geldig: ' . implode(', ', $params),
43
+            'filefield_mimetypes' => 'De :attribute is niet het juiste bestandstype. Volgende types zijn geldig: '.implode(', ', $params),
44 44
         ]);
45 45
 
46 46
         if (!isset($validator->customAttributes[$attribute])) {
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
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     private function addCustomValidationMessage($attribute, $params, $validator): void
41 41
     {
42 42
         $validator->setCustomMessages([
43
-            'filefield_dimensions' => 'De :attribute heeft niet de juiste afmetingen: ' . implode(', ', $params),
43
+            'filefield_dimensions' => 'De :attribute heeft niet de juiste afmetingen: '.implode(', ', $params),
44 44
         ]);
45 45
 
46 46
         if (!isset($validator->customAttributes[$attribute])) {
Please login to merge, or discard this patch.
src/Fields/ValidationRules/ImageFieldMimetypesRule.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
         $mimetype = json_decode($value)->output->type;
42 42
 
43 43
         return (in_array($mimetype, $parameters) ||
44
-            in_array(explode('/', $mimetype)[0] . '/*', $parameters));
44
+            in_array(explode('/', $mimetype)[0].'/*', $parameters));
45 45
     }
46 46
 
47 47
     /**
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     private function addCustomValidationMessage($attribute, $params, $validator): void
53 53
     {
54 54
         $validator->setCustomMessages([
55
-            'imagefield_mimetypes' => 'De :attribute is niet het juiste bestandstype. Volgende types zijn geldig: ' . implode(', ', $params),
55
+            'imagefield_mimetypes' => 'De :attribute is niet het juiste bestandstype. Volgende types zijn geldig: '.implode(', ', $params),
56 56
         ]);
57 57
 
58 58
         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
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     protected function getSize($attribute, $value)
44 44
     {
45 45
         if (!$value instanceof File) {
46
-            throw new \InvalidArgumentException('Value is expected to be of type ' . File::class);
46
+            throw new \InvalidArgumentException('Value is expected to be of type '.File::class);
47 47
         }
48 48
 
49 49
         return $value->getSize() / 1024;
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     private function addCustomValidationMessage($attribute, $params, $validator): void
58 58
     {
59 59
         $validator->setCustomMessages([
60
-            'filefield_max' => 'De :attribute is te groot en dient kleiner te zijn dan ' . implode(',', $params) . 'Kb.',
60
+            'filefield_max' => 'De :attribute is te groot en dient kleiner te zijn dan '.implode(',', $params).'Kb.',
61 61
         ]);
62 62
 
63 63
         if (!isset($validator->customAttributes[$attribute])) {
Please login to merge, or discard this patch.
src/Fields/ValidationRules/ValidatesExistingAssetAttributes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     protected function validateAssetMimetypes(Asset $asset, $parameters)
57 57
     {
58 58
         return (in_array($asset->getMimeType(), $parameters) ||
59
-            in_array(explode('/', $asset->getMimeType())[0] . '/*', $parameters));
59
+            in_array(explode('/', $asset->getMimeType())[0].'/*', $parameters));
60 60
     }
61 61
 
62 62
     protected function validateAssetMax(Asset $asset, $parameters)
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
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     private function addCustomValidationMessage($attribute, $params, $validator): void
41 41
     {
42 42
         $validator->setCustomMessages([
43
-            'filefield_min' => 'De :attribute is te klein en dient groter te zijn dan ' . implode(',', $params) . 'Kb.',
43
+            'filefield_min' => 'De :attribute is te klein en dient groter te zijn dan '.implode(',', $params).'Kb.',
44 44
         ]);
45 45
 
46 46
         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
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
     private function addCustomValidationMessage($attribute, $params, $validator): void
63 63
     {
64 64
         $validator->setCustomMessages([
65
-            'imagefield_max' => 'De :attribute is te groot en dient kleiner te zijn dan ' . implode(',', $params) . 'Kb.',
65
+            'imagefield_max' => 'De :attribute is te groot en dient kleiner te zijn dan '.implode(',', $params).'Kb.',
66 66
         ]);
67 67
 
68 68
         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
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     private function addCustomValidationMessage($attribute, $params, $validator): void
60 60
     {
61 61
         $validator->setCustomMessages([
62
-            'imagefield_min' => 'De :attribute is te klein en dient groter te zijn dan ' . implode(',', $params) . 'Kb.',
62
+            'imagefield_min' => 'De :attribute is te klein en dient groter 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.