@@ -39,7 +39,7 @@ discard block |
||
| 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 |
||
| 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 | /** |
@@ -143,12 +143,12 @@ discard block |
||
| 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 |
||
| 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; |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | Event::on( |
| 230 | 230 | CraftVariable::class, |
| 231 | 231 | CraftVariable::EVENT_INIT, |
| 232 | - function (Event $event) { |
|
| 232 | + function(Event $event) { |
|
| 233 | 233 | /** @var CraftVariable $variable */ |
| 234 | 234 | $variable = $event->sender; |
| 235 | 235 | $variable->set('imageOptimize', ImageOptimizeVariable::class); |
@@ -240,7 +240,7 @@ discard block |
||
| 240 | 240 | Event::on( |
| 241 | 241 | Fields::class, |
| 242 | 242 | Fields::EVENT_REGISTER_FIELD_TYPES, |
| 243 | - function (RegisterComponentTypesEvent $event) { |
|
| 243 | + function(RegisterComponentTypesEvent $event) { |
|
| 244 | 244 | Craft::debug( |
| 245 | 245 | 'Fields::EVENT_REGISTER_FIELD_TYPES', |
| 246 | 246 | __METHOD__ |
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | Event::on( |
| 276 | 276 | Assets::class, |
| 277 | 277 | Assets::EVENT_GET_ASSET_URL, |
| 278 | - function (GetAssetUrlEvent $event) { |
|
| 278 | + function(GetAssetUrlEvent $event) { |
|
| 279 | 279 | Craft::debug( |
| 280 | 280 | 'Assets::EVENT_GET_ASSET_URL', |
| 281 | 281 | __METHOD__ |
@@ -291,7 +291,7 @@ discard block |
||
| 291 | 291 | Event::on( |
| 292 | 292 | Assets::class, |
| 293 | 293 | Assets::EVENT_GET_ASSET_THUMB_URL, |
| 294 | - function (GetAssetThumbUrlEvent $event) { |
|
| 294 | + function(GetAssetThumbUrlEvent $event) { |
|
| 295 | 295 | Craft::debug( |
| 296 | 296 | 'Assets::EVENT_GET_ASSET_THUMB_URL', |
| 297 | 297 | __METHOD__ |
@@ -307,7 +307,7 @@ discard block |
||
| 307 | 307 | Event::on( |
| 308 | 308 | AssetTransforms::class, |
| 309 | 309 | AssetTransforms::EVENT_GENERATE_TRANSFORM, |
| 310 | - function (GenerateTransformEvent $event) { |
|
| 310 | + function(GenerateTransformEvent $event) { |
|
| 311 | 311 | Craft::debug( |
| 312 | 312 | 'AssetTransforms::EVENT_GENERATE_TRANSFORM', |
| 313 | 313 | __METHOD__ |
@@ -323,7 +323,7 @@ discard block |
||
| 323 | 323 | Event::on( |
| 324 | 324 | AssetTransforms::class, |
| 325 | 325 | AssetTransforms::EVENT_AFTER_DELETE_TRANSFORMS, |
| 326 | - function (AssetTransformImageEvent $event) { |
|
| 326 | + function(AssetTransformImageEvent $event) { |
|
| 327 | 327 | Craft::debug( |
| 328 | 328 | 'AssetTransforms::EVENT_AFTER_DELETE_TRANSFORMS', |
| 329 | 329 | __METHOD__ |
@@ -339,7 +339,7 @@ discard block |
||
| 339 | 339 | Event::on( |
| 340 | 340 | Assets::class, |
| 341 | 341 | Assets::EVENT_BEFORE_REPLACE_ASSET, |
| 342 | - function (ReplaceAssetEvent $event) { |
|
| 342 | + function(ReplaceAssetEvent $event) { |
|
| 343 | 343 | Craft::debug( |
| 344 | 344 | 'Assets::EVENT_BEFORE_REPLACE_ASSET', |
| 345 | 345 | __METHOD__ |
@@ -361,7 +361,7 @@ discard block |
||
| 361 | 361 | Event::on( |
| 362 | 362 | Assets::class, |
| 363 | 363 | Assets::EVENT_AFTER_REPLACE_ASSET, |
| 364 | - function (ReplaceAssetEvent $event) { |
|
| 364 | + function(ReplaceAssetEvent $event) { |
|
| 365 | 365 | Craft::debug( |
| 366 | 366 | 'Assets::EVENT_AFTER_REPLACE_ASSET', |
| 367 | 367 | __METHOD__ |
@@ -384,7 +384,7 @@ discard block |
||
| 384 | 384 | Event::on( |
| 385 | 385 | Assets::class, |
| 386 | 386 | Elements::EVENT_BEFORE_SAVE_ELEMENT, |
| 387 | - function (ElementEvent $event) { |
|
| 387 | + function(ElementEvent $event) { |
|
| 388 | 388 | Craft::debug( |
| 389 | 389 | 'Elements::EVENT_BEFORE_SAVE_ELEMENT', |
| 390 | 390 | __METHOD__ |
@@ -408,7 +408,7 @@ discard block |
||
| 408 | 408 | Event::on( |
| 409 | 409 | Asset::class, |
| 410 | 410 | Elements::EVENT_BEFORE_DELETE_ELEMENT, |
| 411 | - function (ElementEvent $event) { |
|
| 411 | + function(ElementEvent $event) { |
|
| 412 | 412 | Craft::debug( |
| 413 | 413 | 'Elements::EVENT_BEFORE_DELETE_ELEMENT', |
| 414 | 414 | __METHOD__ |
@@ -436,7 +436,7 @@ discard block |
||
| 436 | 436 | Event::on( |
| 437 | 437 | Fields::class, |
| 438 | 438 | Fields::EVENT_AFTER_SAVE_FIELD, |
| 439 | - function (FieldEvent $event) { |
|
| 439 | + function(FieldEvent $event) { |
|
| 440 | 440 | Craft::debug( |
| 441 | 441 | 'Fields::EVENT_AFTER_SAVE_FIELD', |
| 442 | 442 | __METHOD__ |
@@ -453,7 +453,7 @@ discard block |
||
| 453 | 453 | Event::on( |
| 454 | 454 | Plugins::class, |
| 455 | 455 | Plugins::EVENT_AFTER_SAVE_PLUGIN_SETTINGS, |
| 456 | - function (PluginEvent $event) { |
|
| 456 | + function(PluginEvent $event) { |
|
| 457 | 457 | if ($event->plugin === $this) { |
| 458 | 458 | Craft::debug( |
| 459 | 459 | 'Plugins::EVENT_AFTER_SAVE_PLUGIN_SETTINGS', |
@@ -472,7 +472,7 @@ discard block |
||
| 472 | 472 | Event::on( |
| 473 | 473 | Volumes::class, |
| 474 | 474 | Volumes::EVENT_AFTER_SAVE_VOLUME, |
| 475 | - function (VolumeEvent $event) { |
|
| 475 | + function(VolumeEvent $event) { |
|
| 476 | 476 | Craft::debug( |
| 477 | 477 | 'Volumes::EVENT_AFTER_SAVE_VOLUME', |
| 478 | 478 | __METHOD__ |
@@ -493,7 +493,7 @@ discard block |
||
| 493 | 493 | Event::on( |
| 494 | 494 | Plugins::class, |
| 495 | 495 | Plugins::EVENT_AFTER_INSTALL_PLUGIN, |
| 496 | - function (PluginEvent $event) { |
|
| 496 | + function(PluginEvent $event) { |
|
| 497 | 497 | if ($event->plugin === $this) { |
| 498 | 498 | $request = Craft::$app->getRequest(); |
| 499 | 499 | if ($request->isCpRequest) { |
@@ -527,7 +527,7 @@ discard block |
||
| 527 | 527 | Event::on( |
| 528 | 528 | UrlManager::class, |
| 529 | 529 | UrlManager::EVENT_REGISTER_SITE_URL_RULES, |
| 530 | - function (RegisterUrlRulesEvent $event) { |
|
| 530 | + function(RegisterUrlRulesEvent $event) { |
|
| 531 | 531 | Craft::debug( |
| 532 | 532 | 'UrlManager::EVENT_REGISTER_SITE_URL_RULES', |
| 533 | 533 | __METHOD__ |