@@ -61,7 +61,7 @@ |
||
| 61 | 61 | |
| 62 | 62 | // Render the template with our vars passed in |
| 63 | 63 | try { |
| 64 | - $htmlText = Craft::$app->view->renderTemplate('youtubeliveembed/' . $templatePath, $params); |
|
| 64 | + $htmlText = Craft::$app->view->renderTemplate('youtubeliveembed/'.$templatePath, $params); |
|
| 65 | 65 | $templateRendered = true; |
| 66 | 66 | } catch (\Exception $e) { |
| 67 | 67 | $htmlText = Craft::t( |
@@ -5,7 +5,7 @@ |
||
| 5 | 5 | |
| 6 | 6 | return static function(ECSConfig $ecsConfig): void { |
| 7 | 7 | $ecsConfig->paths([ |
| 8 | - __DIR__ . '/src', |
|
| 8 | + __DIR__.'/src', |
|
| 9 | 9 | __FILE__, |
| 10 | 10 | ]); |
| 11 | 11 | $ecsConfig->parallel(); |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | // Protected Properties |
| 24 | 24 | // ========================================================================= |
| 25 | 25 | |
| 26 | - protected array|bool|int $allowAnonymous = [ |
|
| 26 | + protected array | bool | int $allowAnonymous = [ |
|
| 27 | 27 | 'is-live', |
| 28 | 28 | ]; |
| 29 | 29 | |