Passed
Push — develop-v4 ( 239e71...20059d )
by Andrew
10:32
created
src/seoelements/SeoDigitalProduct.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
         Event::on(
106 106
             ProductTypes::class,
107 107
             ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE,
108
-            function (ProductTypeEvent $event) {
108
+            function(ProductTypeEvent $event) {
109 109
                 Craft::debug(
110 110
                     'ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE',
111 111
                     __METHOD__
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
                 ProductTypes::class,
122 122
                 ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE,
123 123
                 /** @var ProductTypeEvent $event */
124
-                static function ($event) {
124
+                static function($event) {
125 125
                     Craft::debug(
126 126
                         'ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE',
127 127
                         __METHOD__
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
         Event::on(
178 178
             Product::class,
179 179
             Product::EVENT_DEFINE_SIDEBAR_HTML,
180
-            static function (DefineHtmlEvent $event) {
180
+            static function(DefineHtmlEvent $event) {
181 181
                 Craft::debug(
182 182
                     'Product::EVENT_DEFINE_SIDEBAR_HTML',
183 183
                     __METHOD__
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
             ConfigHelper::getConfigFromFile(self::configFilePath()),
387 387
             [
388 388
                 'sourceId' => $sourceModel->id,
389
-                'sourceName' => (string)$sourceModel->name,
389
+                'sourceName' => (string) $sourceModel->name,
390 390
                 'sourceHandle' => $sourceModel->handle,
391 391
             ]
392 392
         );
Please login to merge, or discard this patch.
src/seoelements/SeoProduct.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
         Event::on(
107 107
             ProductTypes::class,
108 108
             ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE,
109
-            function (ProductTypeEvent $event) {
109
+            function(ProductTypeEvent $event) {
110 110
                 Craft::debug(
111 111
                     'ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE',
112 112
                     __METHOD__
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             Event::on(
122 122
                 ProductTypes::class,
123 123
                 ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE,
124
-                static function (ProductTypeEvent $event) {
124
+                static function(ProductTypeEvent $event) {
125 125
                     Craft::debug(
126 126
                         'ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE',
127 127
                         __METHOD__
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
         Event::on(
177 177
             Product::class,
178 178
             Product::EVENT_DEFINE_SIDEBAR_HTML,
179
-            static function (DefineHtmlEvent $event) {
179
+            static function(DefineHtmlEvent $event) {
180 180
                 Craft::debug(
181 181
                     'Product::EVENT_DEFINE_SIDEBAR_HTML',
182 182
                     __METHOD__
@@ -385,7 +385,7 @@  discard block
 block discarded – undo
385 385
             ConfigHelper::getConfigFromFile(self::configFilePath()),
386 386
             [
387 387
                 'sourceId' => $sourceModel->id,
388
-                'sourceName' => (string)$sourceModel->name,
388
+                'sourceName' => (string) $sourceModel->name,
389 389
                 'sourceHandle' => $sourceModel->handle,
390 390
             ]
391 391
         );
Please login to merge, or discard this patch.
src/console/controllers/SitemapController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     /**
50 50
      * @var    bool|array
51 51
      */
52
-    protected array|bool|int $allowAnonymous = [
52
+    protected array | bool | int $allowAnonymous = [
53 53
     ];
54 54
 
55 55
     // Public Methods
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      */
75 75
     public function actionGenerate()
76 76
     {
77
-        echo 'Generating sitemap' . PHP_EOL;
77
+        echo 'Generating sitemap'.PHP_EOL;
78 78
         if ($this->siteId !== null) {
79 79
             $siteIds[] = $this->siteId;
80 80
         } else {
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
                         ]);
117 117
                     }
118 118
 
119
-                    echo '---' . PHP_EOL;
119
+                    echo '---'.PHP_EOL;
120 120
                 }
121 121
             }
122 122
         }
Please login to merge, or discard this patch.
src/base/MetaItem.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
                 // Add a URL to the schema.org type if this is a MetaJsonLD object
159 159
                 if ($isMetaJsonLdModel) {
160 160
                     /** @var  $this MetaJsonLd */
161
-                    $extraInfo = ' for http://schema.org/' . $this->type;
161
+                    $extraInfo = ' for http://schema.org/'.$this->type;
162 162
                 }
163 163
                 $errorMsg =
164 164
                     Craft::t('seomatic', 'Scenario: "')
@@ -169,10 +169,10 @@  discard block
 block discarded – undo
169 169
                     . print_r($this->render(), true);
170 170
                 Craft::info($errorMsg, __METHOD__);
171 171
                 foreach ($this->errors as $param => $errors) {
172
-                    $errorMsg = Craft::t('seomatic', $errorLabel) . $param;
172
+                    $errorMsg = Craft::t('seomatic', $errorLabel).$param;
173 173
                     /** @var array $errors */
174 174
                     foreach ($errors as $error) {
175
-                        $errorMsg .= ' -> ' . $error;
175
+                        $errorMsg .= ' -> '.$error;
176 176
                         // Change the error level depending on the error message if this is a MetaJsonLD object
177 177
                         if ($isMetaJsonLdModel) {
178 178
                             if (strpos($error, 'recommended') !== false) {
@@ -185,15 +185,15 @@  discard block
 block discarded – undo
185 185
                             }
186 186
                         }
187 187
                     }
188
-                    Craft::info(strtoupper($logLevel) . ' - ' . $errorMsg, __METHOD__);
188
+                    Craft::info(strtoupper($logLevel).' - '.$errorMsg, __METHOD__);
189 189
                     // Extra debugging info for MetaJsonLd objects
190 190
                     if ($isMetaJsonLdModel) {
191 191
                         /** @var MetaJsonLd $className */
192 192
                         $className = \get_class($this);
193 193
                         if (!empty($className::$schemaPropertyDescriptions[$param])) {
194
-                            $errorMsg = Craft::t('seomatic', $errorLabel) . $param;
194
+                            $errorMsg = Craft::t('seomatic', $errorLabel).$param;
195 195
                             /** @var $className MetaJsonLd */
196
-                            $errorMsg .= ' -> ' . $className::$schemaPropertyDescriptions[$param];
196
+                            $errorMsg .= ' -> '.$className::$schemaPropertyDescriptions[$param];
197 197
                             Craft::info($errorMsg, __METHOD__);
198 198
                         }
199 199
                     }
Please login to merge, or discard this patch.
src/models/SitemapCustomTemplate.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -127,16 +127,16 @@  discard block
 block discarded – undo
127 127
         $dependency = new TagDependency([
128 128
             'tags' => [
129 129
                 self::GLOBAL_SITEMAP_CACHE_TAG,
130
-                self::SITEMAP_CACHE_TAG . $handle . $siteId,
130
+                self::SITEMAP_CACHE_TAG.$handle.$siteId,
131 131
             ],
132 132
         ]);
133 133
 
134
-        return $cache->getOrSet(self::CACHE_KEY . $groupId . self::CUSTOM_SCOPE . $handle . $siteId, function () use (
134
+        return $cache->getOrSet(self::CACHE_KEY.$groupId.self::CUSTOM_SCOPE.$handle.$siteId, function() use (
135 135
             $handle,
136 136
             $siteId
137 137
         ) {
138 138
             Craft::info(
139
-                'Sitemap Custom cache miss: ' . $handle . '/' . $siteId,
139
+                'Sitemap Custom cache miss: '.$handle.'/'.$siteId,
140 140
                 __METHOD__
141 141
             );
142 142
             $lines = [];
@@ -211,9 +211,9 @@  discard block
 block discarded – undo
211 211
     {
212 212
         $handle = self::CUSTOM_HANDLE;
213 213
         $cache = Craft::$app->getCache();
214
-        TagDependency::invalidate($cache, self::SITEMAP_CACHE_TAG . $handle . $siteId);
214
+        TagDependency::invalidate($cache, self::SITEMAP_CACHE_TAG.$handle.$siteId);
215 215
         Craft::info(
216
-            'Sitemap Custom cache cleared: ' . $handle,
216
+            'Sitemap Custom cache cleared: '.$handle,
217 217
             __METHOD__
218 218
         );
219 219
     }
Please login to merge, or discard this patch.
src/models/SitemapIndexTemplate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      */
118 118
     public function getFilename(int $groupId): string
119 119
     {
120
-        return 'sitemaps-' . $groupId . '-sitemap.xml';
120
+        return 'sitemaps-'.$groupId.'-sitemap.xml';
121 121
     }
122 122
 
123 123
     /**
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
             ],
151 151
         ]);
152 152
 
153
-        return $cache->getOrSet(self::CACHE_KEY . $groupId . '.' . $siteId, function () use ($groupSiteIds, $siteId) {
153
+        return $cache->getOrSet(self::CACHE_KEY.$groupId.'.'.$siteId, function() use ($groupSiteIds, $siteId) {
154 154
             Craft::info(
155 155
                 'Sitemap index cache miss',
156 156
                 __METHOD__
Please login to merge, or discard this patch.
src/models/MetaSiteVars.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -225,10 +225,10 @@
 block discarded – undo
225 225
         }
226 226
         // Make sure these are strings
227 227
         if (!empty($this->facebookProfileId)) {
228
-            $this->facebookProfileId = (string)$this->facebookProfileId;
228
+            $this->facebookProfileId = (string) $this->facebookProfileId;
229 229
         }
230 230
         if (!empty($this->facebookAppId)) {
231
-            $this->facebookAppId = (string)$this->facebookAppId;
231
+            $this->facebookAppId = (string) $this->facebookAppId;
232 232
         }
233 233
         // Identity
234 234
         if ($this->identity !== null && is_array($this->identity)) {
Please login to merge, or discard this patch.
src/models/MetaTag.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         $className = MetaTag::class;
80 80
         if ($tagType) {
81 81
             // Potentially load a sub-type of MetaTag
82
-            $tagClassName = 'nystudio107\\seomatic\\models\\metatag\\' . ucfirst($tagType) . 'Tag';
82
+            $tagClassName = 'nystudio107\\seomatic\\models\\metatag\\'.ucfirst($tagType).'Tag';
83 83
             /** @var $model MetaTag */
84 84
             if (class_exists($tagClassName)) {
85 85
                 $className = $tagClassName;
@@ -155,10 +155,10 @@  discard block
 block discarded – undo
155 155
                 if (Seomatic::$devMode) {
156 156
                     $error = Craft::t(
157 157
                         'seomatic',
158
-                        '{tagtype} tag `{key}` did not render because it is missing attributes. ' . print_r($data, true),
158
+                        '{tagtype} tag `{key}` did not render because it is missing attributes. '.print_r($data, true),
159 159
                         ['tagtype' => 'Meta', 'key' => $this->key]
160 160
                     );
161
-                    Craft::info('WARNING - ' . $error, __METHOD__);
161
+                    Craft::info('WARNING - '.$error, __METHOD__);
162 162
                 }
163 163
                 $shouldRender = false;
164 164
             }
Please login to merge, or discard this patch.
src/models/MetaLink.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         $className = MetaLink::class;
86 86
         if ($tagType) {
87 87
             // Potentially load a sub-type of MetaTag
88
-            $tagClassName = 'nystudio107\\seomatic\\models\\metalink\\' . ucfirst($tagType) . 'Link';
88
+            $tagClassName = 'nystudio107\\seomatic\\models\\metalink\\'.ucfirst($tagType).'Link';
89 89
             /** @var $model MetaLink */
90 90
             if (class_exists($tagClassName)) {
91 91
                 $className = $tagClassName;
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
                         '{tagtype} tag `{key}` did not render because it is missing attributes.',
182 182
                         ['tagtype' => 'Link', 'key' => $this->key]
183 183
                     );
184
-                    Craft::info('WARNING - ' . $error, __METHOD__);
184
+                    Craft::info('WARNING - '.$error, __METHOD__);
185 185
                 }
186 186
                 $shouldRender = false;
187 187
             }
Please login to merge, or discard this patch.