Passed
Push — 0.3 ( bea7df...6843d6 )
by Ben
12:45 queued 02:54
created
src/Pages/Page.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
             return static::$managedModelKey;
84 84
         }
85 85
 
86
-        throw new \Exception('Missing required static property \'managedModelKey\' on ' . static::class. '.');
86
+        throw new \Exception('Missing required static property \'managedModelKey\' on '.static::class.'.');
87 87
     }
88 88
 
89 89
     /**
@@ -123,9 +123,9 @@  discard block
 block discarded – undo
123 123
     public function flatReferenceLabel(): string
124 124
     {
125 125
         if ($this->exists) {
126
-            $status = ! $this->isPublished() ? ' [' . $this->statusAsPlainLabel().']' : null;
126
+            $status = !$this->isPublished() ? ' ['.$this->statusAsPlainLabel().']' : null;
127 127
 
128
-            return $this->title ? $this->title . $status : '';
128
+            return $this->title ? $this->title.$status : '';
129 129
         }
130 130
 
131 131
         return '';
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         // What was the creator of the assetlibrary package thinking. It sure wasn't me... I promise...
146 146
         $assets = $this->getAllFiles($type, app()->getLocale())->map->getFileUrl();
147 147
 
148
-        if($assets->first() == null)
148
+        if ($assets->first() == null)
149 149
         {
150 150
             $assets = $this->getAllFiles($type)->map->getFileUrl();
151 151
         }
Please login to merge, or discard this patch.
src/Fields/Types/MediaField.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Thinktomorrow\Chief\Fields\Types;
6 6
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
         $builder = $model->assets()->where('asset_pivots.type', $this->key());
45 45
 
46
-        if($locale) {
46
+        if ($locale) {
47 47
             $builder = $builder->where('asset_pivots.locale', $locale);
48 48
         }
49 49
 
Please login to merge, or discard this patch.
src/Fields/Types/DocumentField.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Thinktomorrow\Chief\Fields\Types;
6 6
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
         $builder = $model->assets()->where('asset_pivots.type', $this->key());
45 45
 
46
-        if($locale) {
46
+        if ($locale) {
47 47
             $builder = $builder->where('asset_pivots.locale', $locale);
48 48
         }
49 49
         foreach ($builder->get() as $asset) {
Please login to merge, or discard this patch.
src/Media/UploadMedia.php 2 patches
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
         // When no files are uploaded, we still would like to sort our assets duh
27 27
         if (empty($files_by_type)) {
28
-            foreach($files_order_by_type as $type => $fileIdsCollection){
28
+            foreach ($files_order_by_type as $type => $fileIdsCollection) {
29 29
                 $this->sortFiles($model, $type, $fileIdsCollection);
30 30
             }
31 31
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
         foreach ($files_by_type as $type => $files) {
36 36
 
37
-            foreach($files as $locale => $files)
37
+            foreach ($files as $locale => $files)
38 38
             {
39 39
                 $this->validateFileUploads($files);
40 40
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
         if (is_string($file)) {
55 55
             $image_name = json_decode($file)->output->name;
56 56
             $asset      = $this->addAsset(json_decode($file)->output->image, $type, $locale, $image_name, $model);
57
-        } else {
57
+        }else {
58 58
             $image_name = $file->getClientOriginalName();
59 59
             $asset      = $this->addAsset($file, $type, $locale, $image_name, $model);
60 60
         }
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 
78 78
         if (is_string($file)) {
79 79
             $asset = AssetUploader::uploadFromBase64($file, $filename);
80
-        } else {
80
+        }else {
81 81
             $asset = AssetUploader::upload($file, $filename);
82 82
         }
83 83
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     private function handleFiles(string $action, HasMedia $model, string $type = null, array $files, array $files_order = [], string $locale = null)
115 115
     {
116 116
         if (isset($files[$action]) && is_array($files[$action]) && !empty($files[$action])) {
117
-            if($action == 'delete')
117
+            if ($action == 'delete')
118 118
             {
119 119
                 foreach ($model->assets()->whereIn('id', $files[$action])->get() as $asset) {
120 120
                     $asset->delete();
@@ -127,10 +127,10 @@  discard block
 block discarded – undo
127 127
                     continue;
128 128
                 }
129 129
 
130
-                if($action == 'new')
130
+                if ($action == 'new')
131 131
                 {
132 132
                     $this->addFile($model, $type, $files_order, $file, $locale);
133
-                }elseif($action == 'replace')
133
+                }elseif ($action == 'replace')
134 134
                 {
135 135
                     $asset = AssetUploader::uploadFromBase64(json_decode($file)->output->image, json_decode($file)->output->name);
136 136
                     $model->replaceAsset($id, $asset->id);
@@ -145,9 +145,9 @@  discard block
 block discarded – undo
145 145
      */
146 146
     private function sluggifyFilename($filename): string
147 147
     {
148
-        $extension = substr($filename, strrpos($filename, '.') + 1);
148
+        $extension = substr($filename, strrpos($filename, '.')+1);
149 149
         $filename  = substr($filename, 0, strrpos($filename, '.'));
150
-        $filename  = str_slug($filename) . '.' . $extension;
150
+        $filename  = str_slug($filename).'.'.$extension;
151 151
 
152 152
         return $filename;
153 153
     }
@@ -163,9 +163,9 @@  discard block
 block discarded – undo
163 163
                 if ($file instanceof UploadedFile && !$file->isValid()) {
164 164
                     if ($file->getError() == UPLOAD_ERR_INI_SIZE) {
165 165
                         throw new FileTooBigException(
166
-                            'Cannot upload file because it exceeded the allowed upload_max_filesize: upload_max_filesize is smaller than post size. ' .
167
-                            'upload_max_filesize: ' . (int)ini_get('upload_max_filesize') . 'MB, ' .
168
-                            'post_max_size: ' . (int)(ini_get('post_max_size')) . 'MB'
166
+                            'Cannot upload file because it exceeded the allowed upload_max_filesize: upload_max_filesize is smaller than post size. '.
167
+                            'upload_max_filesize: '.(int)ini_get('upload_max_filesize').'MB, '.
168
+                            'post_max_size: '.(int)(ini_get('post_max_size')).'MB'
169 169
                         );
170 170
                     }
171 171
                 }
@@ -177,31 +177,31 @@  discard block
 block discarded – undo
177 177
     {
178 178
         $actions = ['new', 'replace', 'delete'];
179 179
 
180
-        foreach($files_by_type as $type => $files)
180
+        foreach ($files_by_type as $type => $files)
181 181
         {
182
-            foreach($files as $locale => $_files){
183
-                if(!in_array($locale, config('translatable.locales'))) {
184
-                    throw new \InvalidArgumentException('Corrupt file payload. key is expected to be a valid locale [' . implode(',', config('translatable.locales', [])). ']. Instead [' . $locale . '] is given.');
182
+            foreach ($files as $locale => $_files) {
183
+                if (!in_array($locale, config('translatable.locales'))) {
184
+                    throw new \InvalidArgumentException('Corrupt file payload. key is expected to be a valid locale ['.implode(',', config('translatable.locales', [])).']. Instead ['.$locale.'] is given.');
185 185
                 }
186 186
 
187
-                if(!is_array($_files)) {
188
-                    throw new \InvalidArgumentException('A valid files entry should be an array of files, key with either [new, replace or delete]. Instead a ' . gettype($_files) . ' is given.');
187
+                if (!is_array($_files)) {
188
+                    throw new \InvalidArgumentException('A valid files entry should be an array of files, key with either [new, replace or delete]. Instead a '.gettype($_files).' is given.');
189 189
                 }
190 190
 
191
-                foreach($_files as $action => $file) {
192
-                    if(!in_array($action, $actions)) {
193
-                        throw new \InvalidArgumentException('A valid files entry should have a key of either ['.implode(',', $actions).']. Instead ' . $action . ' is given.');
191
+                foreach ($_files as $action => $file) {
192
+                    if (!in_array($action, $actions)) {
193
+                        throw new \InvalidArgumentException('A valid files entry should have a key of either ['.implode(',', $actions).']. Instead '.$action.' is given.');
194 194
                     }
195 195
                 }
196 196
             }
197 197
         }
198 198
 
199
-        foreach($files_order_by_type as $type => $fileIdsCollection)
199
+        foreach ($files_order_by_type as $type => $fileIdsCollection)
200 200
         {
201
-            foreach($fileIdsCollection as $locale => $commaSeparatedFileIds){
201
+            foreach ($fileIdsCollection as $locale => $commaSeparatedFileIds) {
202 202
 
203
-                if(!in_array($locale, config('translatable.locales'))) {
204
-                    throw new \InvalidArgumentException('Corrupt file payload. key for the file order is expected to be a valid locale [' . implode(',', config('translatable.locales', [])). ']. Instead [' . $locale . '] is given.');
203
+                if (!in_array($locale, config('translatable.locales'))) {
204
+                    throw new \InvalidArgumentException('Corrupt file payload. key for the file order is expected to be a valid locale ['.implode(',', config('translatable.locales', [])).']. Instead ['.$locale.'] is given.');
205 205
                 }
206 206
             }
207 207
         }
@@ -211,13 +211,13 @@  discard block
 block discarded – undo
211 211
     {
212 212
         $defaultLocale = config('app.fallback_locale');
213 213
 
214
-        foreach($files_by_type as $type => $files)
214
+        foreach ($files_by_type as $type => $files)
215 215
         {
216
-            foreach($files as $locale => $_files){
217
-                if(!in_array($locale, config('translatable.locales'))) {
216
+            foreach ($files as $locale => $_files) {
217
+                if (!in_array($locale, config('translatable.locales'))) {
218 218
                     unset($files_by_type[$type][$locale]);
219 219
 
220
-                    if(!isset($files_by_type[$type][$defaultLocale])) {
220
+                    if (!isset($files_by_type[$type][$defaultLocale])) {
221 221
                         $files_by_type[$type][$defaultLocale] = [];
222 222
                     }
223 223
 
@@ -233,14 +233,14 @@  discard block
 block discarded – undo
233 233
     {
234 234
         $defaultLocale = config('app.fallback_locale');
235 235
 
236
-        foreach($files_order_by_type as $type => $fileIdsCollection)
236
+        foreach ($files_order_by_type as $type => $fileIdsCollection)
237 237
         {
238
-            if(!is_array($fileIdsCollection)) {
238
+            if (!is_array($fileIdsCollection)) {
239 239
                 $fileIdsCollection = [$defaultLocale => $fileIdsCollection];
240 240
                 $files_order_by_type[$type] = $fileIdsCollection;
241 241
             }
242 242
 
243
-            foreach($fileIdsCollection as $locale => $commaSeparatedFileIds){
243
+            foreach ($fileIdsCollection as $locale => $commaSeparatedFileIds) {
244 244
                 $files_order_by_type[$type][$locale] = explode(',', $commaSeparatedFileIds);
245 245
             }
246 246
         }
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
     {
253 253
         $sortedFileIds = [];
254 254
 
255
-        foreach($fileIdsCollection as $locale => $fileIds) {
255
+        foreach ($fileIdsCollection as $locale => $fileIds) {
256 256
             $sortedFileIds = array_merge($sortedFileIds, $fileIds);
257 257
         }
258 258
 
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
     {
264 264
         $assets = $model->assets()->where('asset_pivots.type', $type)->get();
265 265
 
266
-        foreach($assets as $asset)
266
+        foreach ($assets as $asset)
267 267
         {
268 268
             $pivot = $asset->pivot;
269 269
             $pivot->order = array_search($asset->id, $sortedAssetIds);
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
                 if($action == 'new')
131 131
                 {
132 132
                     $this->addFile($model, $type, $files_order, $file, $locale);
133
-                }elseif($action == 'replace')
133
+                } elseif($action == 'replace')
134 134
                 {
135 135
                     $asset = AssetUploader::uploadFromBase64(json_decode($file)->output->image, json_decode($file)->output->name);
136 136
                     $model->replaceAsset($id, $asset->id);
Please login to merge, or discard this patch.