Passed
Push — v3 ( 9af8ac...482808 )
by Andrew
20:05 queued 13s
created
src/seomatic-config/productmeta/LinkContainer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,11 +21,11 @@
 block discarded – undo
21 21
  */
22 22
 
23 23
 return [
24
-    MetaLinkContainer::CONTAINER_TYPE . LinkService::GENERAL_HANDLE => [
24
+    MetaLinkContainer::CONTAINER_TYPE.LinkService::GENERAL_HANDLE => [
25 25
         'name' => 'General',
26 26
         'description' => 'Link Tags',
27 27
         'handle' => LinkService::GENERAL_HANDLE,
28
-        'class' => (string)MetaLinkContainer::class,
28
+        'class' => (string) MetaLinkContainer::class,
29 29
         'include' => true,
30 30
         'dependencies' => [
31 31
         ],
Please login to merge, or discard this patch.
src/seomatic-config/productmeta/ScriptContainer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,11 +20,11 @@
 block discarded – undo
20 20
  */
21 21
 
22 22
 return [
23
-    MetaScriptContainer::CONTAINER_TYPE . ScriptService::GENERAL_HANDLE => [
23
+    MetaScriptContainer::CONTAINER_TYPE.ScriptService::GENERAL_HANDLE => [
24 24
         'name' => 'General',
25 25
         'description' => 'Script Tags',
26 26
         'handle' => ScriptService::GENERAL_HANDLE,
27
-        'class' => (string)MetaScriptContainer::class,
27
+        'class' => (string) MetaScriptContainer::class,
28 28
         'include' => true,
29 29
         'dependencies' => [
30 30
         ],
Please login to merge, or discard this patch.
src/seomatic-config/campaignmeta/LinkContainer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,11 +21,11 @@
 block discarded – undo
21 21
  */
22 22
 
23 23
 return [
24
-    MetaLinkContainer::CONTAINER_TYPE . LinkService::GENERAL_HANDLE => [
24
+    MetaLinkContainer::CONTAINER_TYPE.LinkService::GENERAL_HANDLE => [
25 25
         'name' => 'General',
26 26
         'description' => 'Link Tags',
27 27
         'handle' => LinkService::GENERAL_HANDLE,
28
-        'class' => (string)MetaLinkContainer::class,
28
+        'class' => (string) MetaLinkContainer::class,
29 29
         'include' => true,
30 30
         'dependencies' => [
31 31
         ],
Please login to merge, or discard this patch.
src/seomatic-config/campaignmeta/ScriptContainer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,11 +20,11 @@
 block discarded – undo
20 20
  */
21 21
 
22 22
 return [
23
-    MetaScriptContainer::CONTAINER_TYPE . ScriptService::GENERAL_HANDLE => [
23
+    MetaScriptContainer::CONTAINER_TYPE.ScriptService::GENERAL_HANDLE => [
24 24
         'name' => 'General',
25 25
         'description' => 'Script Tags',
26 26
         'handle' => ScriptService::GENERAL_HANDLE,
27
-        'class' => (string)MetaScriptContainer::class,
27
+        'class' => (string) MetaScriptContainer::class,
28 28
         'include' => true,
29 29
         'dependencies' => [
30 30
         ],
Please login to merge, or discard this patch.
src/seomatic-config/eventmeta/LinkContainer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,11 +21,11 @@
 block discarded – undo
21 21
  */
22 22
 
23 23
 return [
24
-    MetaLinkContainer::CONTAINER_TYPE . LinkService::GENERAL_HANDLE => [
24
+    MetaLinkContainer::CONTAINER_TYPE.LinkService::GENERAL_HANDLE => [
25 25
         'name' => 'General',
26 26
         'description' => 'Link Tags',
27 27
         'handle' => LinkService::GENERAL_HANDLE,
28
-        'class' => (string)MetaLinkContainer::class,
28
+        'class' => (string) MetaLinkContainer::class,
29 29
         'include' => true,
30 30
         'dependencies' => [
31 31
         ],
Please login to merge, or discard this patch.
src/seomatic-config/eventmeta/ScriptContainer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,11 +20,11 @@
 block discarded – undo
20 20
  */
21 21
 
22 22
 return [
23
-    MetaScriptContainer::CONTAINER_TYPE . ScriptService::GENERAL_HANDLE => [
23
+    MetaScriptContainer::CONTAINER_TYPE.ScriptService::GENERAL_HANDLE => [
24 24
         'name' => 'General',
25 25
         'description' => 'Script Tags',
26 26
         'handle' => ScriptService::GENERAL_HANDLE,
27
-        'class' => (string)MetaScriptContainer::class,
27
+        'class' => (string) MetaScriptContainer::class,
28 28
         'include' => true,
29 29
         'dependencies' => [
30 30
         ],
Please login to merge, or discard this patch.
src/debug/panels/SeomaticPanel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     public function getSummary(): string
68 68
     {
69
-        return Craft::$app->getView()->render($this->viewPath . 'summary', ['panel' => $this]);
69
+        return Craft::$app->getView()->render($this->viewPath.'summary', ['panel' => $this]);
70 70
     }
71 71
 
72 72
     /**
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      */
75 75
     public function getDetail(): string
76 76
     {
77
-        return Craft::$app->getView()->render($this->viewPath . 'detail', ['panel' => $this]);
77
+        return Craft::$app->getView()->render($this->viewPath.'detail', ['panel' => $this]);
78 78
     }
79 79
 
80 80
     /**
Please login to merge, or discard this patch.
src/debug/views/seomatic/detail.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@
 block discarded – undo
164 164
                     $content .= $this->render('rendered-tags', [
165 165
                         'values' => [
166 166
                             'renderedTags' => $panel->data[$metaBundleCategory]['renderedTags'][$metaContainerName] ?? [],
167
-                            'id' => $sectionName . '-' . $metaBundleCategory . '-' . $metaContainerName . '-rendered-tags',
167
+                            'id' => $sectionName.'-'.$metaBundleCategory.'-'.$metaContainerName.'-rendered-tags',
168 168
                             'view' => $this,
169 169
                             'language' => $editorLanguage,
170 170
                         ],
Please login to merge, or discard this patch.
src/gql/queries/SeomaticQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             'seomatic' => [
41 41
                 'type' => SeomaticInterface::getType(),
42 42
                 'args' => SeomaticArguments::getArguments(),
43
-                'resolve' => SeomaticResolver::class . '::resolve',
43
+                'resolve' => SeomaticResolver::class.'::resolve',
44 44
                 'description' => 'This query is used to query for SEOmatic meta data.',
45 45
             ],
46 46
         ];
Please login to merge, or discard this patch.