Passed
Push — ft/dynamic-attributes ( 48373f...169e79 )
by Ben
06:24
created
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/Management/Assistants/PublishAssistant.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
             ->performedOn($this->manager->existingModel())
62 62
             ->log('published');
63 63
 
64
-        return redirect()->back()->with('messages.success', $this->manager->details()->title . ' is online gezet.');
64
+        return redirect()->back()->with('messages.success', $this->manager->details()->title.' is online gezet.');
65 65
     }
66 66
 
67 67
     public function unpublish()
@@ -75,12 +75,12 @@  discard block
 block discarded – undo
75 75
             ->performedOn($this->manager->existingModel())
76 76
             ->log('unpublished');
77 77
 
78
-        return redirect()->back()->with('messages.success', $this->manager->details()->title . ' is offline gehaald.');
78
+        return redirect()->back()->with('messages.success', $this->manager->details()->title.' is offline gehaald.');
79 79
     }
80 80
 
81 81
     public function findAll(): Collection
82 82
     {
83
-        return $this->manager->existingModel()->published()->get()->map(function ($model) {
83
+        return $this->manager->existingModel()->published()->get()->map(function($model) {
84 84
             return $this->managers->findByModel($model);
85 85
         });
86 86
     }
@@ -137,10 +137,10 @@  discard block
 block discarded – undo
137 137
             $class = 'text-warning';
138 138
         }
139 139
 
140
-        $statusAsLabel = '<span class="' . $class . '">' . $label . '</span>';
140
+        $statusAsLabel = '<span class="'.$class.'">'.$label.'</span>';
141 141
 
142 142
         if (!$plain && $this->hasPreviewUrl()) {
143
-            $statusAsLabel = '<a href="' . $this->previewUrl() . '" target="_blank">' . $statusAsLabel . '</a>';
143
+            $statusAsLabel = '<a href="'.$this->previewUrl().'" target="_blank">'.$statusAsLabel.'</a>';
144 144
         }
145 145
 
146 146
         return $statusAsLabel;
Please login to merge, or discard this patch.
src/Media/Application/AbstractMediaFieldHandler.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -141,10 +141,10 @@  discard block
 block discarded – undo
141 141
             return $filename;
142 142
         }
143 143
 
144
-        $extension = substr($filename, strrpos($filename, '.') + 1);
144
+        $extension = substr($filename, strrpos($filename, '.')+1);
145 145
         $filename = substr($filename, 0, strrpos($filename, '.'));
146 146
 
147
-        return Str::slug($filename) . '.' . $extension;
147
+        return Str::slug($filename).'.'.$extension;
148 148
     }
149 149
 
150 150
     protected function sort(HasAsset $model, MediaField $field, Request $request)
@@ -170,8 +170,8 @@  discard block
 block discarded – undo
170 170
         $values = isset($fileIdInput[$key])
171 171
             ? $fileIdInput[$key]
172 172
             : (
173
-                isset($fileIdInput['files-' . $key])
174
-                ? $fileIdInput['files-' . $key]
173
+                isset($fileIdInput['files-'.$key])
174
+                ? $fileIdInput['files-'.$key]
175 175
                 : ''
176 176
             );
177 177
 
Please login to merge, or discard this patch.
src/DynamicAttributes/DynamicAttributes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     {
18 18
         $value = is_null($value) ? [] : (is_array($value) ? $value : json_decode($value, true));
19 19
 
20
-        return new static((array) $value);
20
+        return new static((array)$value);
21 21
     }
22 22
 
23 23
     public function has(string $key): bool
Please login to merge, or discard this patch.
src/DynamicAttributes/HasDynamicAttributes.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 
18 18
     public function isDynamicAttributeKey($key): bool
19 19
     {
20
-        if(array_key_exists($key, $this->attributes)) {
20
+        if (array_key_exists($key, $this->attributes)) {
21 21
             return false;
22 22
         }
23 23
 
@@ -71,15 +71,15 @@  discard block
 block discarded – undo
71 71
     /* Part of the custom cast */
72 72
     public function getAttribute($key)
73 73
     {
74
-        if (!$this->isDynamicAttributeKey($key)){
74
+        if (!$this->isDynamicAttributeKey($key)) {
75 75
             return parent::getAttribute($key);
76 76
         }
77 77
 
78 78
         $locale = app()->getLocale();
79 79
 
80 80
         // If the dynamic attributes contain a localized value, this has preference over any non-localized.
81
-        foreach(["{$locale}.$key", $key] as $k){
82
-            if($this->dynamicAttributesInstance()->has($k)){
81
+        foreach (["{$locale}.$key", $key] as $k) {
82
+            if ($this->dynamicAttributesInstance()->has($k)) {
83 83
                 return $this->dynamic($k);
84 84
             }
85 85
         }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     /* Part of the custom cast */
91 91
     public function setAttribute($key, $value)
92 92
     {
93
-        if ($this->isDynamicAttributeKey($key)){
93
+        if ($this->isDynamicAttributeKey($key)) {
94 94
             return $this->setDynamic($key, $value);
95 95
         }
96 96
 
@@ -100,9 +100,9 @@  discard block
 block discarded – undo
100 100
     /* Part of the custom cast */
101 101
     protected function dynamicAttributesInstance(): DynamicAttributes
102 102
     {
103
-        if(!isset($this->attributes[$this->getDynamicAttributesKey()])) {
103
+        if (!isset($this->attributes[$this->getDynamicAttributesKey()])) {
104 104
             $this->attributes[$this->getDynamicAttributesKey()] = DynamicAttributes::fromRawValue([]);
105
-        } elseif(!($raw = $this->attributes[$this->getDynamicAttributesKey()]) instanceof DynamicAttributes) {
105
+        } elseif (!($raw = $this->attributes[$this->getDynamicAttributesKey()]) instanceof DynamicAttributes) {
106 106
             $this->attributes[$this->getDynamicAttributesKey()] = DynamicAttributes::fromRawValue($raw);
107 107
         }
108 108
 
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
      */
120 120
     private function injectDynamicAttributes(array $attributes, bool $castToObject = true): array
121 121
     {
122
-        if(isset($attributes[$this->getDynamicAttributesKey()])) {
122
+        if (isset($attributes[$this->getDynamicAttributesKey()])) {
123 123
             $attributes[$this->getDynamicAttributesKey()] = $castToObject
124 124
                 ? DynamicAttributes::fromRawValue($attributes[$this->getDynamicAttributesKey()])
125 125
                 : $attributes[$this->getDynamicAttributesKey()]->toJson();
Please login to merge, or discard this patch.