Passed
Push — dependabot/npm_and_yarn/tunnel... ( bf55bc...2f2e82 )
by Philippe
70:41 queued 28:18
created
app/Http/Controllers/Back/Media/UploadManagersMediaController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         $responseContent = [];
30 30
 
31 31
         foreach ($uploads as $upload) {
32
-            if (! $asset = AssetUploader::upload($upload)) {
32
+            if (!$asset = AssetUploader::upload($upload)) {
33 33
                 return response()->json([
34 34
                     'error' => true,
35 35
                     'messages' => 'Afbeelding kan niet worden opgeladen.',
Please login to merge, or discard this patch.
app/Http/Controllers/Back/Media/UploadPagesMediaController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         $responseContent = [];
30 30
 
31 31
         foreach ($uploads as $upload) {
32
-            if (! $asset = AssetUploader::upload($upload)) {
32
+            if (!$asset = AssetUploader::upload($upload)) {
33 33
                 return response()->json([
34 34
                     'error' => true,
35 35
                     'messages' => 'Afbeelding kan niet worden opgeladen.',
Please login to merge, or discard this patch.
src/Media/UploadMedia.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         if (is_string($file)) {
60 60
             $image_name = json_decode($file)->output->name;
61 61
             $asset      = $this->addAsset(json_decode($file)->output->image, $type, null, $image_name, $model);
62
-        } else {
62
+        }else {
63 63
             $image_name = $file->getClientOriginalName();
64 64
             $asset      = $this->addAsset($file, $type, null, $image_name, $model);
65 65
         }
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 
83 83
         if (is_string($file)) {
84 84
             $asset = AssetUploader::uploadFromBase64($file, $filename);
85
-        } else {
85
+        }else {
86 86
             $asset = AssetUploader::upload($file, $filename);
87 87
         }
88 88
 
@@ -126,9 +126,9 @@  discard block
 block discarded – undo
126 126
      */
127 127
     private function sluggifyFilename($filename): string
128 128
     {
129
-        $extension = substr($filename, strrpos($filename, '.') + 1);
129
+        $extension = substr($filename, strrpos($filename, '.')+1);
130 130
         $filename  = substr($filename, 0, strrpos($filename, '.'));
131
-        $filename  = str_slug($filename) . '.' . $extension;
131
+        $filename  = str_slug($filename).'.'.$extension;
132 132
 
133 133
         return $filename;
134 134
     }
@@ -144,9 +144,9 @@  discard block
 block discarded – undo
144 144
                 if ($file instanceof UploadedFile && !$file->isValid()) {
145 145
                     if ($file->getError() == UPLOAD_ERR_INI_SIZE) {
146 146
                         throw new FileTooBigException(
147
-                            'Cannot upload file because it exceeded the allowed upload_max_filesize: upload_max_filesize is smaller than post size. ' .
148
-                            'upload_max_filesize: ' . (int)ini_get('upload_max_filesize') . 'MB, ' .
149
-                            'post_max_size: ' . (int)(ini_get('post_max_size')) . 'MB'
147
+                            'Cannot upload file because it exceeded the allowed upload_max_filesize: upload_max_filesize is smaller than post size. '.
148
+                            'upload_max_filesize: '.(int)ini_get('upload_max_filesize').'MB, '.
149
+                            'post_max_size: '.(int)(ini_get('post_max_size')).'MB'
150 150
                         );
151 151
                     }
152 152
                 }
Please login to merge, or discard this patch.
src/Filters/Types/InputFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 
16 16
     public function apply($value = null): Closure
17 17
     {
18
-        return $this->query && $this->query instanceof Closure ? $this->query : function ($query) {
18
+        return $this->query && $this->query instanceof Closure ? $this->query : function($query) {
19 19
             return $query;
20 20
         };
21 21
     }
Please login to merge, or discard this patch.
src/Fields/Types/DocumentField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Thinktomorrow\Chief\Fields\Types;
5 5
 
Please login to merge, or discard this patch.
src/Fields/Types/InputField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Thinktomorrow\Chief\Fields\Types;
5 5
 
Please login to merge, or discard this patch.
src/Fields/Types/RadioField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Thinktomorrow\Chief\Fields\Types;
5 5
 
Please login to merge, or discard this patch.
src/Fields/Types/MediaField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Thinktomorrow\Chief\Fields\Types;
5 5
 
Please login to merge, or discard this patch.
src/Fields/Types/TextField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Thinktomorrow\Chief\Fields\Types;
5 5
 
Please login to merge, or discard this patch.