Test Setup Failed
Push — a-simpler-manager ( c7b435...29c609 )
by Ben
09:30
created
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.
src/Fields/ValidationRules/ImageFieldMimetypesRule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
         $mimetype = json_decode($value)->output->type;
39 39
 
40 40
         return (in_array($mimetype, $parameters) ||
41
-            in_array(explode('/', $mimetype)[0] . '/*', $parameters));
41
+            in_array(explode('/', $mimetype)[0].'/*', $parameters));
42 42
     }
43 43
 
44 44
     /**
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     private function addCustomValidationMessage($attribute, $params, $validator): void
50 50
     {
51 51
         $validator->setCustomMessages([
52
-            'imagefield_mimetypes' => ':attribute is niet het juiste bestandstype. Volgende types zijn geldig: ' . implode(', ', $params),
52
+            'imagefield_mimetypes' => ':attribute is niet het juiste bestandstype. Volgende types zijn geldig: '.implode(', ', $params),
53 53
         ]);
54 54
 
55 55
         if (!isset($validator->customAttributes[$attribute])) {
Please login to merge, or discard this patch.
src/Urls/UrlRecord.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
             ->first();
38 38
 
39 39
         if (!$record) {
40
-            throw new UrlRecordNotFound('No url record found by slug [' . $slug . '] for locale [' . $locale . '].');
40
+            throw new UrlRecordNotFound('No url record found by slug ['.$slug.'] for locale ['.$locale.'].');
41 41
         }
42 42
 
43 43
         return $record;
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
             ->first();
62 62
 
63 63
         if (!$record) {
64
-            throw new UrlRecordNotFound('No url record found for model [' . $model->getMorphClass() . '@' . $model->id . '] for locale [' . $locale . '].');
64
+            throw new UrlRecordNotFound('No url record found for model ['.$model->getMorphClass().'@'.$model->id.'] for locale ['.$locale.'].');
65 65
         }
66 66
 
67 67
         return $record;
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
         }
156 156
 
157 157
         if ($ignoredModel) {
158
-            $builder->whereNotIn('id', function ($query) use ($ignoredModel) {
158
+            $builder->whereNotIn('id', function($query) use ($ignoredModel) {
159 159
                 $query->select('id')
160 160
                     ->from('chief_urls')
161 161
                     ->where('model_type', '=', $ignoredModel->getMorphClass())
@@ -175,11 +175,11 @@  discard block
 block discarded – undo
175 175
 
176 176
         // Filter out offline urls... TODO: this should be a state that is owned by the url and not the model.
177 177
         // Because of archived pages the mapping can be null so we reject them before we check for online
178
-        return $records->map(function (UrlRecord $urlRecord) {
178
+        return $records->map(function(UrlRecord $urlRecord) {
179 179
             return Morphables::instance($urlRecord->model_type)->find($urlRecord->model_id);
180
-        })->reject(function ($model) {
180
+        })->reject(function($model) {
181 181
             return $model == null;
182
-        })->reject(function (ProvidesUrl $model) {
182
+        })->reject(function(ProvidesUrl $model) {
183 183
             return (method_exists($model, 'isPublished') && !$model->isPublished());
184 184
         });
185 185
     }
Please login to merge, or discard this patch.