Passed
Push — develop ( d7f488...ade286 )
by Andrew
19:30 queued 15:00
created
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/helpers/Color.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -58,9 +58,9 @@  discard block
 block discarded – undo
58 58
      */
59 59
     public static function RGBToHSL(array $rgb): array
60 60
     {
61
-        $r = ((float)$rgb['r']) / 255.0;
62
-        $g = ((float)$rgb['g']) / 255.0;
63
-        $b = ((float)$rgb['b']) / 255.0;
61
+        $r = ((float) $rgb['r']) / 255.0;
62
+        $g = ((float) $rgb['g']) / 255.0;
63
+        $b = ((float) $rgb['b']) / 255.0;
64 64
 
65 65
         $maxC = max($r, $g, $b);
66 66
         $minC = min($r, $g, $b);
@@ -88,9 +88,9 @@  discard block
 block discarded – undo
88 88
             $h /= 6.0;
89 89
         }
90 90
 
91
-        $h = (int)round(360.0 * $h);
92
-        $s = (int)round(100.0 * $s);
93
-        $l = (int)round(100.0 * $l);
91
+        $h = (int) round(360.0 * $h);
92
+        $s = (int) round(100.0 * $s);
93
+        $l = (int) round(100.0 * $l);
94 94
 
95 95
         return ['h' => $h, 's' => $s, 'l' => $l];
96 96
     }
Please login to merge, or discard this patch.
src/config.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,8 @@
 block discarded – undo
51 51
     // It takes a bit of time, so if you never plan to use it, you can turn it off
52 52
     'createColorPalette' => true,
53 53
 
54
-     // Controls whether SVG placeholder silhouettes should be created for image variants
55
-     // It takes a bit of time, so if you never plan to use them, you can turn it off
54
+        // Controls whether SVG placeholder silhouettes should be created for image variants
55
+        // It takes a bit of time, so if you never plan to use them, you can turn it off
56 56
     'createPlaceholderSilhouettes' => false,
57 57
 
58 58
     // Controls whether retina images are automatically created with reduced quality
Please login to merge, or discard this patch.
src/imagetransforms/ImageTransform.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -148,14 +148,14 @@  discard block
 block discarded – undo
148 148
     {
149 149
         $path = $this->decomposeUrl($pathOrUrl);
150 150
         $path_parts = pathinfo($path['path']);
151
-        $new_path = ($path_parts['filename'] ?? '') . '.' . ($path_parts['extension'] ?? '') . $extension;
151
+        $new_path = ($path_parts['filename'] ?? '').'.'.($path_parts['extension'] ?? '').$extension;
152 152
         if (!empty($path_parts['dirname']) && $path_parts['dirname'] !== '.') {
153 153
             $dirname = $path_parts['dirname'];
154 154
             $dirname = $dirname === '/' ? '' : $dirname;
155
-            $new_path = $dirname . DIRECTORY_SEPARATOR . $new_path;
155
+            $new_path = $dirname.DIRECTORY_SEPARATOR.$new_path;
156 156
             $new_path = preg_replace('/([^:])(\/{2,})/', '$1/', $new_path);
157 157
         }
158
-        $output = $path['prefix'] . $new_path . $path['suffix'];
158
+        $output = $path['prefix'].$new_path.$path['suffix'];
159 159
 
160 160
         return $output;
161 161
     }
@@ -176,14 +176,14 @@  discard block
 block discarded – undo
176 176
 
177 177
         if (filter_var($pathOrUrl, FILTER_VALIDATE_URL)) {
178 178
             $url_parts = parse_url($pathOrUrl);
179
-            $result['prefix'] = $url_parts['scheme'] . '://' . $url_parts['host'];
179
+            $result['prefix'] = $url_parts['scheme'].'://'.$url_parts['host'];
180 180
             if (!empty($url_parts['port'])) {
181
-                $result['prefix'] .= ':' . $url_parts['port'];
181
+                $result['prefix'] .= ':'.$url_parts['port'];
182 182
             }
183 183
             $result['path'] = $url_parts['path'];
184 184
             $result['suffix'] = '';
185
-            $result['suffix'] .= empty($url_parts['query']) ? '' : '?' . $url_parts['query'];
186
-            $result['suffix'] .= empty($url_parts['fragment']) ? '' : '#' . $url_parts['fragment'];
185
+            $result['suffix'] .= empty($url_parts['query']) ? '' : '?'.$url_parts['query'];
186
+            $result['suffix'] .= empty($url_parts['fragment']) ? '' : '#'.$url_parts['fragment'];
187 187
         } else {
188 188
             $result['prefix'] = '';
189 189
             $result['path'] = $pathOrUrl;
Please login to merge, or discard this patch.
src/services/Placeholder.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         );
89 89
         $result = '';
90 90
         $width = self::PLACEHOLDER_WIDTH;
91
-        $height = (int)($width / $aspectRatio);
91
+        $height = (int) ($width / $aspectRatio);
92 92
         $placeholderPath = $this->createImageFromPath($tempPath, $width, $height, self::PLACEHOLDER_QUALITY, $position);
93 93
         if (!empty($placeholderPath)) {
94 94
             $result = base64_encode(file_get_contents($placeholderPath));
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     {
111 111
         Craft::beginProfile('generateColorPalette', __METHOD__);
112 112
         Craft::info(
113
-            'Generating color palette for: ' . $tempPath,
113
+            'Generating color palette for: '.$tempPath,
114 114
             __METHOD__
115 115
         );
116 116
         $colorPalette = [];
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
             $lightness /= $colorCount;
157 157
         }
158 158
 
159
-        return $lightness === null ? $lightness : (int)$lightness;
159
+        return $lightness === null ? $lightness : (int) $lightness;
160 160
     }
161 161
     /**
162 162
      * Generate an SVG image via Potrace
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
             __METHOD__
220 220
         );
221 221
         $width = self::TEMP_PLACEHOLDER_WIDTH;
222
-        $height = (int)($width / $aspectRatio);
222
+        $height = (int) ($width / $aspectRatio);
223 223
         $tempPath = $this->createImageFromAsset($asset, $width, $height, self::TEMP_PLACEHOLDER_QUALITY, $position);
224 224
         Craft::endProfile('createTempPlaceholderImage', __METHOD__);
225 225
 
Please login to merge, or discard this patch.
src/jobs/ResaveOptimizedImages.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -91,8 +91,8 @@  discard block
 block discarded – undo
91 91
         while ($currentElement < $totalElements) {
92 92
             $elements = $paginator->getPageResults();
93 93
             if (Craft::$app instanceof ConsoleApplication) {
94
-                echo 'Query ' . $paginator->getCurrentPage() . '/' . $paginator->getTotalPages()
95
-                    . ' - assets: ' . $paginator->getTotalResults()
94
+                echo 'Query '.$paginator->getCurrentPage().'/'.$paginator->getTotalPages()
95
+                    . ' - assets: '.$paginator->getTotalResults()
96 96
                     . PHP_EOL;
97 97
             }
98 98
             /** @var ElementInterface $element */
@@ -107,9 +107,9 @@  discard block
 block discarded – undo
107 107
                         if ($field instanceof OptimizedImagesField && $element instanceof Asset) {
108 108
                             if ($this->fieldId === null || $field->id == $this->fieldId) {
109 109
                                 if (Craft::$app instanceof ConsoleApplication) {
110
-                                    echo $currentElement . '/' . $totalElements
111
-                                        . ' - processing asset: ' . $element->title
112
-                                        . ' from field: ' . $field->name . PHP_EOL;
110
+                                    echo $currentElement.'/'.$totalElements
111
+                                        . ' - processing asset: '.$element->title
112
+                                        . ' from field: '.$field->name.PHP_EOL;
113 113
                                 }
114 114
                                 try {
115 115
                                     ImageOptimize::$plugin->optimizedImages->updateOptimizedImageFieldData($field, $element, $this->force);
@@ -119,9 +119,9 @@  discard block
 block discarded – undo
119 119
                                         echo '[error]: '
120 120
                                             . $e->getMessage()
121 121
                                             . ' while processing '
122
-                                            . $currentElement . '/' . $totalElements
123
-                                            . ' - processing asset: ' . $element->title
124
-                                            . ' from field: ' . $field->name . PHP_EOL;
122
+                                            . $currentElement.'/'.$totalElements
123
+                                            . ' - processing asset: '.$element->title
124
+                                            . ' from field: '.$field->name.PHP_EOL;
125 125
                                     }
126 126
                                 }
127 127
                             }
Please login to merge, or discard this patch.
src/helpers/PluginTemplate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
         array $params = [],
64 64
         string $minifier = null
65 65
     ): string {
66
-        $template = 'image-optimize/' . $templatePath;
66
+        $template = 'image-optimize/'.$templatePath;
67 67
         $oldMode = Craft::$app->view->getTemplateMode();
68 68
         // Look for the template on the frontend first
69 69
         try {
Please login to merge, or discard this patch.
src/models/OptimizedImage.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -554,7 +554,7 @@  discard block
 block discarded – undo
554 554
      */
555 555
     public function getPlaceholderImage(): string
556 556
     {
557
-        return (string)$this->placeholderImage();
557
+        return (string) $this->placeholderImage();
558 558
     }
559 559
 
560 560
     /**
@@ -591,7 +591,7 @@  discard block
 block discarded – undo
591 591
      */
592 592
     public function getPlaceholderBox(string $color = null): string
593 593
     {
594
-        return (string)$this->placeholderBox($color);
594
+        return (string) $this->placeholderBox($color);
595 595
     }
596 596
 
597 597
     /**
@@ -632,7 +632,7 @@  discard block
 block discarded – undo
632 632
      */
633 633
     public function getPlaceholderSilhouette(): string
634 634
     {
635
-        return (string)$this->placeholderSilhouette();
635
+        return (string) $this->placeholderSilhouette();
636 636
     }
637 637
 
638 638
     /**
@@ -744,10 +744,10 @@  discard block
 block discarded – undo
744 744
         foreach ($array as $key => $value) {
745 745
             if ($dpr) {
746 746
                 $descriptor = '1x';
747
-                if (!empty($array[(int)$key / 2])) {
747
+                if (!empty($array[(int) $key / 2])) {
748 748
                     $descriptor = '2x';
749 749
                 }
750
-                if (!empty($array[(int)$key / 3])) {
750
+                if (!empty($array[(int) $key / 3])) {
751 751
                     $descriptor = '3x';
752 752
                 }
753 753
             } else {
@@ -787,13 +787,13 @@  discard block
 block discarded – undo
787 787
     {
788 788
         // Set the class and loading attributes
789 789
         if (isset($attrs['class'])) {
790
-            $attrs['class'] = trim($attrs['class'] . ' lazyload');
790
+            $attrs['class'] = trim($attrs['class'].' lazyload');
791 791
         }
792 792
         // Set the style on this element to be the placeholder image as the background-image
793 793
         if (isset($attrs['style']) && !empty($attrs['src'])) {
794 794
             $attrs['style'] = trim(
795
-                $attrs['style'] .
796
-                'background-image:url(' . $this->getLazyLoadSrc($placeHolder) . '); background-size: cover;'
795
+                $attrs['style'].
796
+                'background-image:url('.$this->getLazyLoadSrc($placeHolder).'); background-size: cover;'
797 797
             );
798 798
         }
799 799
         // Handle attributes that lazy  and lazySizesFallback have in common
Please login to merge, or discard this patch.
src/services/OptimizedImages.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
                             $index->fileExists = 0;
112 112
                             $transforms->storeTransformIndexData($index);
113 113
                             $volume = $asset->getVolume();
114
-                            $transformPath = $asset->folderPath . $transforms->getTransformSubpath($asset, $index);
114
+                            $transformPath = $asset->folderPath.$transforms->getTransformSubpath($asset, $index);
115 115
                             try {
116 116
                                 $volume->deleteFile($transformPath);
117 117
                             } catch (\Throwable $exception) {
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
                             $msg = 'Failed to update transform: '.$e->getMessage();
121 121
                             Craft::error($msg, __METHOD__);
122 122
                             if (Craft::$app instanceof ConsoleApplication) {
123
-                                echo $msg . PHP_EOL;
123
+                                echo $msg.PHP_EOL;
124 124
                             }
125 125
                             // Add the error message to the stickyErrors for the model
126 126
                             $model->stickyErrors[] = $msg;
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                         __METHOD__
145 145
                     );
146 146
                     if (Craft::$app instanceof ConsoleApplication) {
147
-                        echo $msg . PHP_EOL;
147
+                        echo $msg.PHP_EOL;
148 148
                     }
149 149
                     if ($canManipulate) {
150 150
                         // Add the error message to the stickyErrors for the model
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
                                 $folder = $asset->getFolder();
216 216
                                 while ($folder !== null && !$createVariants) {
217 217
                                     if ($folder->uid === $subfolder || $folder->name === $subfolder) {
218
-                                        Craft::info('Matched subfolder uid: ' . print_r($subfolder, true), __METHOD__);
218
+                                        Craft::info('Matched subfolder uid: '.print_r($subfolder, true), __METHOD__);
219 219
                                         $createVariants = true;
220 220
                                     } else {
221 221
                                         $folder = $folder->getParent();
@@ -502,20 +502,20 @@  discard block
 block discarded – undo
502 502
         }
503 503
         $useAspectRatio = $variant['useAspectRatio'] ?? false;
504 504
         if ($useAspectRatio) {
505
-            $aspectRatio = (float)$variant['aspectRatioX'] / (float)$variant['aspectRatioY'];
505
+            $aspectRatio = (float) $variant['aspectRatioX'] / (float) $variant['aspectRatioY'];
506 506
         } else {
507
-            $aspectRatio = (float)$asset->width / (float)$asset->height;
507
+            $aspectRatio = (float) $asset->width / (float) $asset->height;
508 508
         }
509
-        $width = (int)$variant['width'] * (int)$retinaSize;
509
+        $width = (int) $variant['width'] * (int) $retinaSize;
510 510
         $transform->width = $width;
511
-        $transform->height = (int)($width / $aspectRatio);
511
+        $transform->height = (int) ($width / $aspectRatio);
512 512
         // Image quality
513
-        $quality = (int)($variant['quality'] ?? null);
513
+        $quality = (int) ($variant['quality'] ?? null);
514 514
         if (empty($quality)) {
515 515
             $quality = null;
516 516
         }
517 517
         if ($quality !== null && $settings->lowerQualityRetinaImageVariants && $retinaSize != '1') {
518
-            $quality = (int)($quality * (1.5 / (int)$retinaSize));
518
+            $quality = (int) ($quality * (1.5 / (int) $retinaSize));
519 519
         }
520 520
         $transform->quality = $quality;
521 521
         // Interlaced (progressive JPEGs or interlaced PNGs)
Please login to merge, or discard this patch.