Passed
Branch v5 (168a05)
by Andrew
06:30
created
Category
src/helpers/PluginTemplate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
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(
Please login to merge, or discard this patch.
ecs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/controllers/InfoController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.