@@ -88,7 +88,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | |