@@ -40,7 +40,7 @@ |
||
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])) { |
@@ -40,7 +40,7 @@ |
||
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])) { |
@@ -41,7 +41,7 @@ discard block |
||
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 |
||
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])) { |
@@ -43,7 +43,7 @@ discard block |
||
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 |
||
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])) { |
@@ -56,7 +56,7 @@ |
||
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) |
@@ -40,7 +40,7 @@ |
||
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])) { |
@@ -62,7 +62,7 @@ |
||
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])) { |
@@ -59,7 +59,7 @@ |
||
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])) { |
@@ -39,7 +39,7 @@ |
||
39 | 39 | |
40 | 40 | public function get(): string |
41 | 41 | { |
42 | - return $this->className . '@' . $this->id; |
|
42 | + return $this->className.'@'.$this->id; |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | public function equals($other): bool |