Passed
Push — develop ( 3790c4...67d357 )
by Andrew
05:08
created
src/config.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,8 @@
 block discarded – undo
53 53
     // It takes a bit of time, so if you never plan to use it, you can turn it off
54 54
     'createColorPalette' => true,
55 55
 
56
-     // Controls whether SVG placeholder silhouettes should be created for image variants
57
-     // It takes a bit of time, so if you never plan to use them, you can turn it off
56
+        // Controls whether SVG placeholder silhouettes should be created for image variants
57
+        // It takes a bit of time, so if you never plan to use them, you can turn it off
58 58
     'createPlaceholderSilhouettes' => true,
59 59
 
60 60
     // Controls whether retina images are automatically created with reduced quality
Please login to merge, or discard this patch.
src/models/OptimizedImage.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
      */
368 368
     public function getPlaceholderImage(): string
369 369
     {
370
-        return (string)$this->placeholderImage();
370
+        return (string) $this->placeholderImage();
371 371
     }
372 372
 
373 373
     /**
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
      */
405 405
     public function getPlaceholderBox(string $color = null): string
406 406
     {
407
-        return (string)$this->placeholderBox($color);
407
+        return (string) $this->placeholderBox($color);
408 408
     }
409 409
 
410 410
     /**
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
      */
446 446
     public function getPlaceholderSilhouette(): string
447 447
     {
448
-        return (string)$this->placeholderSilhouette();
448
+        return (string) $this->placeholderSilhouette();
449 449
     }
450 450
 
451 451
     /**
@@ -557,10 +557,10 @@  discard block
 block discarded – undo
557 557
         foreach ($array as $key => $value) {
558 558
             if ($dpr) {
559 559
                 $descriptor = '1x';
560
-                if (!empty($array[(int)$key / 2])) {
560
+                if (!empty($array[(int) $key / 2])) {
561 561
                     $descriptor = '2x';
562 562
                 }
563
-                if (!empty($array[(int)$key / 3])) {
563
+                if (!empty($array[(int) $key / 3])) {
564 564
                     $descriptor = '3x';
565 565
                 }
566 566
             } else {
Please login to merge, or discard this patch.
src/listeners/GetCraftQLSchema.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,16 +39,16 @@
 block discarded – undo
39 39
 
40 40
         // Primary getter functions
41 41
         $fieldObject->addStringField('src')
42
-            ->arguments(function (\markhuot\CraftQL\Builders\Field $field) {
42
+            ->arguments(function(\markhuot\CraftQL\Builders\Field $field) {
43 43
                 $field->addIntArgument('width');
44 44
             })
45
-            ->resolve(function ($root, $args) {
45
+            ->resolve(function($root, $args) {
46 46
                 return $root->src(@$args['width'] ?: 0);
47 47
             });
48 48
         $fieldObject->addField('srcUrls')
49 49
             ->lists()
50 50
             ->type($srcObject)
51
-            ->resolve(function ($root, $args) {
51
+            ->resolve(function($root, $args) {
52 52
                 $result = [];
53 53
                 foreach ($root->optimizedImageUrls as $width => $url) {
54 54
                     $result[] = ['width' => $width, 'url' => $url];
Please login to merge, or discard this patch.
src/services/Placeholder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
         Craft::beginProfile('generatePlaceholderImage', __METHOD__);
84 84
         $result = '';
85 85
         $width = self::PLACEHOLDER_WIDTH;
86
-        $height = (int)($width / $aspectRatio);
86
+        $height = (int) ($width / $aspectRatio);
87 87
         $placeholderPath = $this->createImageFromPath($tempPath, $width, $height, self::PLACEHOLDER_QUALITY, $position);
88 88
         if (!empty($placeholderPath)) {
89 89
             $result = base64_encode(file_get_contents($placeholderPath));
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
     {
176 176
         Craft::beginProfile('createTempPlaceholderImage', __METHOD__);
177 177
         $width = self::TEMP_PLACEHOLDER_WIDTH;
178
-        $height = (int)($width / $aspectRatio);
178
+        $height = (int) ($width / $aspectRatio);
179 179
         $tempPath = $this->createImageFromAsset($asset, $width, $height, self::TEMP_PLACEHOLDER_QUALITY, $position);
180 180
         Craft::endProfile('createTempPlaceholderImage', __METHOD__);
181 181
 
Please login to merge, or discard this patch.
src/helpers/Manifest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
         $cache = Craft::$app->getCache();
404 404
         $file = $cache->getOrSet(
405 405
             self::CACHE_KEY.$path,
406
-            function () use ($path, $callback) {
406
+            function() use ($path, $callback) {
407 407
                 $result = null;
408 408
                 $contents = @file_get_contents($path);
409 409
                 if ($contents) {
@@ -433,7 +433,7 @@  discard block
 block discarded – undo
433 433
     protected static function combinePaths(string ...$paths): string
434 434
     {
435 435
         $last_key = \count($paths) - 1;
436
-        array_walk($paths, function (&$val, $key) use ($last_key) {
436
+        array_walk($paths, function(&$val, $key) use ($last_key) {
437 437
             switch ($key) {
438 438
                 case 0:
439 439
                     $val = rtrim($val, '/ ');
Please login to merge, or discard this patch.
src/variables/ManifestVariable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
         self::$config['server']['publicPath'] = $baseAssetsUrl;
52 52
         $useDevServer = getenv('NYS_PLUGIN_DEVSERVER');
53 53
         if ($useDevServer !== false) {
54
-            self::$config['useDevServer'] = (bool)$useDevServer;
54
+            self::$config['useDevServer'] = (bool) $useDevServer;
55 55
         }
56 56
     }
57 57
 
Please login to merge, or discard this patch.
src/services/OptimizedImages.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -385,11 +385,11 @@
 block discarded – undo
385 385
         }
386 386
         $width = $variant['width'] * $retinaSize;
387 387
         $transform->width = $width;
388
-        $transform->height = (int)($width / $aspectRatio);
388
+        $transform->height = (int) ($width / $aspectRatio);
389 389
         // Image quality
390 390
         $quality = $variant['quality'] ?? null;
391 391
         if ($settings->lowerQualityRetinaImageVariants && $retinaSize != '1') {
392
-            $quality = (int)($quality * (1.5 / (int)$retinaSize));
392
+            $quality = (int) ($quality * (1.5 / (int) $retinaSize));
393 393
         }
394 394
         $transform->quality = $quality;
395 395
         // Interlaced (progressive JPEGs or interlaced PNGs)
Please login to merge, or discard this patch.
src/imagetransforms/ThumborImageTransform.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      */
40 40
     public function getTransformUrl(Asset $asset, $transform, array $params = [])
41 41
     {
42
-        return (string)$this->getUrlBuilderForTransform($asset, $transform, $params);
42
+        return (string) $this->getUrlBuilderForTransform($asset, $transform, $params);
43 43
     }
44 44
 
45 45
     /**
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         $builder = $this->getUrlBuilderForTransform($asset, $transform, $params)
58 58
             ->addFilter('format', 'webp');
59 59
 
60
-        return (string)$builder;
60
+        return (string) $builder;
61 61
     }
62 62
 
63 63
     /**
Please login to merge, or discard this patch.
src/imagetransforms/ImageTransform.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -143,12 +143,12 @@  discard block
 block discarded – undo
143 143
     {
144 144
         $path = $this->decomposeUrl($pathOrUrl);
145 145
         $path_parts = pathinfo($path['path']);
146
-        $new_path = $path_parts['filename'] . '.' . $path_parts['extension'] . $extension;
146
+        $new_path = $path_parts['filename'].'.'.$path_parts['extension'].$extension;
147 147
         if (!empty($path_parts['dirname']) && $path_parts['dirname'] !== '.') {
148
-            $new_path = $path_parts['dirname'] . DIRECTORY_SEPARATOR . $new_path;
148
+            $new_path = $path_parts['dirname'].DIRECTORY_SEPARATOR.$new_path;
149 149
             $new_path = preg_replace('/([^:])(\/{2,})/', '$1/', $new_path);
150 150
         }
151
-        $output = $path['prefix'] . $new_path . $path['suffix'];
151
+        $output = $path['prefix'].$new_path.$path['suffix'];
152 152
 
153 153
         return $output;
154 154
     }
@@ -169,11 +169,11 @@  discard block
 block discarded – undo
169 169
 
170 170
         if (filter_var($pathOrUrl, FILTER_VALIDATE_URL)) {
171 171
             $url_parts = parse_url($pathOrUrl);
172
-            $result['prefix'] = $url_parts['scheme'] . '://' . $url_parts['host'];
172
+            $result['prefix'] = $url_parts['scheme'].'://'.$url_parts['host'];
173 173
             $result['path'] = $url_parts['path'];
174 174
             $result['suffix'] = '';
175
-            $result['suffix'] .= empty($url_parts['query']) ? '' : '?' . $url_parts['query'];
176
-            $result['suffix'] .= empty($url_parts['fragment']) ? '' : '#' . $url_parts['fragment'];
175
+            $result['suffix'] .= empty($url_parts['query']) ? '' : '?'.$url_parts['query'];
176
+            $result['suffix'] .= empty($url_parts['fragment']) ? '' : '#'.$url_parts['fragment'];
177 177
         } else {
178 178
             $result['prefix'] = '';
179 179
             $result['path'] = $pathOrUrl;
Please login to merge, or discard this patch.