@@ -111,7 +111,7 @@ discard block |
||
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 |
||
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; |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | __METHOD__ |
144 | 144 | ); |
145 | 145 | if (Craft::$app instanceof ConsoleApplication) { |
146 | - echo $msg . PHP_EOL; |
|
146 | + echo $msg.PHP_EOL; |
|
147 | 147 | } |
148 | 148 | // Add the error message to the stickyErrors for the model |
149 | 149 | $model->stickyErrors[] = $msg; |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | $folder = $asset->getFolder(); |
210 | 210 | while ($folder !== null && !$createVariants) { |
211 | 211 | if ($folder->uid === $subfolder) { |
212 | - Craft::info('Matched subfolder uid: ' . print_r($subfolder, true), __METHOD__); |
|
212 | + Craft::info('Matched subfolder uid: '.print_r($subfolder, true), __METHOD__); |
|
213 | 213 | $createVariants = true; |
214 | 214 | } else { |
215 | 215 | $folder = $folder->getParent(); |
@@ -491,20 +491,20 @@ discard block |
||
491 | 491 | } |
492 | 492 | $useAspectRatio = $variant['useAspectRatio'] ?? false; |
493 | 493 | if ($useAspectRatio) { |
494 | - $aspectRatio = (int)$variant['aspectRatioX'] / (int)$variant['aspectRatioY']; |
|
494 | + $aspectRatio = (int) $variant['aspectRatioX'] / (int) $variant['aspectRatioY']; |
|
495 | 495 | } else { |
496 | - $aspectRatio = (int)$asset->width / (int)$asset->height; |
|
496 | + $aspectRatio = (int) $asset->width / (int) $asset->height; |
|
497 | 497 | } |
498 | - $width = (int)$variant['width'] * (int)$retinaSize; |
|
498 | + $width = (int) $variant['width'] * (int) $retinaSize; |
|
499 | 499 | $transform->width = $width; |
500 | - $transform->height = (int)($width / $aspectRatio); |
|
500 | + $transform->height = (int) ($width / $aspectRatio); |
|
501 | 501 | // Image quality |
502 | - $quality = (int)($variant['quality'] ?? null); |
|
502 | + $quality = (int) ($variant['quality'] ?? null); |
|
503 | 503 | if (empty($quality)) { |
504 | 504 | $quality = null; |
505 | 505 | } |
506 | 506 | if ($quality !== null && $settings->lowerQualityRetinaImageVariants && $retinaSize != '1') { |
507 | - $quality = (int)($quality * (1.5 / (int)$retinaSize)); |
|
507 | + $quality = (int) ($quality * (1.5 / (int) $retinaSize)); |
|
508 | 508 | } |
509 | 509 | $transform->quality = $quality; |
510 | 510 | // Interlaced (progressive JPEGs or interlaced PNGs) |
@@ -63,7 +63,7 @@ |
||
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 { |
@@ -261,7 +261,7 @@ |
||
261 | 261 | $vars, |
262 | 262 | $minifier |
263 | 263 | ); |
264 | - $content = (string)$content; |
|
264 | + $content = (string) $content; |
|
265 | 265 | if ($scriptAttrs !== null) { |
266 | 266 | $attrs = array_merge([ |
267 | 267 | ], |
@@ -554,7 +554,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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,7 +787,7 @@ discard block |
||
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 | if (!empty($attrs['loading'])) { |
793 | 793 | $attrs['loading'] = 'lazy'; |
@@ -795,8 +795,8 @@ discard block |
||
795 | 795 | // Set the style on this element to be the placeholder image as the background-image |
796 | 796 | if (isset($attrs['style']) && !empty($attrs['src'])) { |
797 | 797 | $attrs['style'] = trim( |
798 | - $attrs['style'] . |
|
799 | - 'background-image:url(' . $this->getLazyLoadSrc($lazyLoad) . '); background-size: cover;' |
|
798 | + $attrs['style']. |
|
799 | + 'background-image:url('.$this->getLazyLoadSrc($lazyLoad).'); background-size: cover;' |
|
800 | 800 | ); |
801 | 801 | } |
802 | 802 | // Only swap to data- attributes if they want the LazySizes fallback |