Test Setup Failed
Push — develop-v4 ( bf1486...2d8e70 )
by Andrew
08:30
created
src/controllers/SitemapController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     /**
32 32
      * @inheritdoc
33 33
      */
34
-    protected array|bool|int $allowAnonymous = [
34
+    protected array | bool | int $allowAnonymous = [
35 35
         'sitemap-index',
36 36
         'sitemap-index-redirect',
37 37
         'sitemap',
Please login to merge, or discard this patch.
src/controllers/MetaContainerController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     /**
37 37
      * @inheritdoc
38 38
      */
39
-    protected array|bool|int $allowAnonymous = [
39
+    protected array | bool | int $allowAnonymous = [
40 40
         'all-meta-containers',
41 41
         'meta-title-container',
42 42
         'meta-tag-container',
Please login to merge, or discard this patch.
src/controllers/FrontendTemplateController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     /**
31 31
      * @inheritdoc
32 32
      */
33
-    protected array|bool|int $allowAnonymous = [
33
+    protected array | bool | int $allowAnonymous = [
34 34
         'humans',
35 35
         'robots',
36 36
         'ads',
Please login to merge, or discard this patch.
src/controllers/ContentSeoController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     /**
47 47
      * @var    bool|array
48 48
      */
49
-    protected array|bool|int $allowAnonymous = [
49
+    protected array | bool | int $allowAnonymous = [
50 50
     ];
51 51
 
52 52
     // Public Methods
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
         // Query the db table
101 101
         $offset = ($page - 1) * $per_page;
102 102
         $currentSiteHandle = '';
103
-        if ((int)$siteId !== 0) {
103
+        if ((int) $siteId !== 0) {
104 104
             $site = Craft::$app->getSites()->getSiteById($siteId);
105 105
             if ($site !== null) {
106 106
                 $currentSiteHandle = $site->handle;
@@ -155,11 +155,11 @@  discard block
 block discarded – undo
155 155
                     $numGrades = \count(SettingsController::SETUP_GRADES);
156 156
                     $numFields = \count(SettingsController::SEO_SETUP_FIELDS);
157 157
                     foreach (SettingsController::SEO_SETUP_FIELDS as $setupField => $setupLabel) {
158
-                        $stat += (int)!empty($metaBundle->metaGlobalVars[$setupField]);
158
+                        $stat += (int) !empty($metaBundle->metaGlobalVars[$setupField]);
159 159
                         $value = $variables['contentSetupChecklist'][$setupField]['value'] ?? 0;
160 160
                         $variables['contentSetupChecklist'][$setupField] = [
161 161
                             'label' => $setupLabel,
162
-                            'value' => $value + (int)!empty($metaBundle->metaGlobalVars[$setupField]),
162
+                            'value' => $value + (int) !empty($metaBundle->metaGlobalVars[$setupField]),
163 163
                         ];
164 164
                     }
165 165
                     $stat = round($numGrades - (($stat * $numGrades) / $numFields));
Please login to merge, or discard this patch.
src/controllers/JsonLdController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     /**
31 31
      * @inheritdoc
32 32
      */
33
-    protected array|bool|int $allowAnonymous = [
33
+    protected array | bool | int $allowAnonymous = [
34 34
         'get-type',
35 35
         'get-decomposed-type',
36 36
         'get-type-array',
Please login to merge, or discard this patch.
src/controllers/PreviewController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     /**
33 33
      * @inheritdoc
34 34
      */
35
-    protected array|bool|int $allowAnonymous = [
35
+    protected array | bool | int $allowAnonymous = [
36 36
         'social-media',
37 37
     ];
38 38
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         $html = '';
54 54
 
55 55
         // Don't allow the preview to be accessed publicly
56
-        $this->requireAuthorization(Seomatic::SEOMATIC_PREVIEW_AUTHORIZATION_KEY . $elementId);
56
+        $this->requireAuthorization(Seomatic::SEOMATIC_PREVIEW_AUTHORIZATION_KEY.$elementId);
57 57
 
58 58
         /** @var Element $element */
59 59
         $element = Craft::$app->getElements()->getElementById($elementId, null, $siteId);
Please login to merge, or discard this patch.
src/controllers/FileController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     /**
35 35
      * @inheritdoc
36 36
      */
37
-    protected array|bool|int $allowAnonymous = [
37
+    protected array | bool | int $allowAnonymous = [
38 38
         'seo-file-link',
39 39
     ];
40 40
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
             }
84 84
             // Add the Link header
85 85
             if (!empty($canonical)) {
86
-                $headerValue = '<' . $canonical . '>; rel="canonical"';
86
+                $headerValue = '<'.$canonical.'>; rel="canonical"';
87 87
                 $response->headers->add('Link', $headerValue);
88 88
             }
89 89
             // Ensure the file type is allowed
Please login to merge, or discard this patch.
src/services/MetaBundles.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
      * @param MetaBundle $metaBundle
179 179
      * @param bool $forceUpdate
180 180
      */
181
-    public function syncBundleWithConfig(MetaBundle &$metaBundle, bool $forceUpdate = false)
181
+    public function syncBundleWithConfig(MetaBundle & $metaBundle, bool $forceUpdate = false)
182 182
     {
183 183
         $prevMetaBundle = $metaBundle;
184 184
         $config = [];
@@ -259,8 +259,8 @@  discard block
 block discarded – undo
259 259
      */
260 260
     public function updateMetaBundle(MetaBundle $metaBundle, int $siteId)
261 261
     {
262
-        $metaBundle->sourceName = (string)$metaBundle->sourceName;
263
-        $metaBundle->sourceTemplate = (string)$metaBundle->sourceTemplate;
262
+        $metaBundle->sourceName = (string) $metaBundle->sourceName;
263
+        $metaBundle->sourceTemplate = (string) $metaBundle->sourceTemplate;
264 264
         // Make sure it validates
265 265
         if ($metaBundle->validate(null, true)) {
266 266
             // Save it out to a record
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
                 'sourceSiteId' => $siteId,
271 271
             ];
272 272
             if ($metaBundle->typeId !== null) {
273
-                $metaBundle->typeId = (int)$metaBundle->typeId;
273
+                $metaBundle->typeId = (int) $metaBundle->typeId;
274 274
             }
275 275
             if (!empty($metaBundle->typeId)) {
276 276
                 $params['typeId'] = $metaBundle->typeId;
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
             // @TODO remove this hack that doesn't allow environment-transformed settings to be saved in a meta bundle with a proper system to address it
287 287
             // The issue was that the containers were getting saved to the db with a hard-coded setting in them, because they'd
288 288
             // been set that way by the environment, whereas to be changeable via the GUI, it needs to be set to {seomatic.meta.robots}
289
-            $robotsTag = $metaBundle->metaContainers[MetaTagContainer::CONTAINER_TYPE . TagService::GENERAL_HANDLE]->data['robots'] ?? null;
289
+            $robotsTag = $metaBundle->metaContainers[MetaTagContainer::CONTAINER_TYPE.TagService::GENERAL_HANDLE]->data['robots'] ?? null;
290 290
             if (!empty($robotsTag)) {
291 291
                 $robotsTag->content = $robotsTag->environment['live']['content'] ?? '{{ seomatic.meta.robots }}';
292 292
             }
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
                 $metaBundleDefaults = ArrayHelper::merge(
369 369
                     $seoElement::metaBundleConfig($sourceModel),
370 370
                     [
371
-                        'sourceTemplate' => (string)$siteSetting->template,
371
+                        'sourceTemplate' => (string) $siteSetting->template,
372 372
                         'sourceSiteId' => $siteSetting->siteId,
373 373
                         'sourceAltSiteSettings' => $siteSettingsArray,
374 374
                         'sourceDateUpdated' => $dateUpdated,
@@ -416,7 +416,7 @@  discard block
 block discarded – undo
416 416
     public function getMetaBundleBySourceHandle(string $sourceBundleType, string $sourceHandle, int $sourceSiteId, $typeId = null)
417 417
     {
418 418
         $metaBundle = null;
419
-        $typeId = (int)$typeId;
419
+        $typeId = (int) $typeId;
420 420
         // See if we have the meta bundle cached
421 421
         if (!empty($this->metaBundlesBySourceHandle[$sourceBundleType][$sourceHandle][$sourceSiteId][$typeId])) {
422 422
             $id = $this->metaBundlesBySourceHandle[$sourceBundleType][$sourceHandle][$sourceSiteId][$typeId];
@@ -503,7 +503,7 @@  discard block
 block discarded – undo
503 503
                             /** @var Section|CategoryGroup|ProductType $sourceModel */
504 504
                             $sourceModel = $seoElement::sourceModelFromId($sourceId);
505 505
                             if ($sourceModel !== null) {
506
-                                $metaBundle->sourceName = (string)$sourceModel->name;
506
+                                $metaBundle->sourceName = (string) $sourceModel->name;
507 507
                                 $metaBundle->sourceHandle = $sourceModel->handle;
508 508
                             }
509 509
                         }
@@ -544,7 +544,7 @@  discard block
 block discarded – undo
544 544
     public function getMetaBundleBySourceId(string $sourceBundleType, int $sourceId, int $sourceSiteId, $typeId = null)
545 545
     {
546 546
         $metaBundle = null;
547
-        $typeId = (int)$typeId;
547
+        $typeId = (int) $typeId;
548 548
         // See if we have the meta bundle cached
549 549
         if (!empty($this->metaBundlesBySourceId[$sourceBundleType][$sourceId][$sourceSiteId][$typeId])) {
550 550
             $id = $this->metaBundlesBySourceId[$sourceBundleType][$sourceId][$sourceSiteId][$typeId];
@@ -739,7 +739,7 @@  discard block
 block discarded – undo
739 739
                 ->from(['{{%seomatic_metabundles}}'])
740 740
                 ->where(['=', 'sourceBundleType', $seoElement::META_BUNDLE_TYPE]);
741 741
 
742
-            if ((int)$sourceSiteId !== 0) {
742
+            if ((int) $sourceSiteId !== 0) {
743 743
                 $subQuery->andWhere(['sourceSiteId' => $sourceSiteId]);
744 744
             }
745 745
             if ($filter !== '') {
@@ -776,7 +776,7 @@  discard block
 block discarded – undo
776 776
     public function getContentMetaBundleForElement(Element $element)
777 777
     {
778 778
         $source = $this->getMetaSourceFromElement($element);
779
-        $key = implode(".", $source) . '.' . $element->siteId;
779
+        $key = implode(".", $source).'.'.$element->siteId;
780 780
 
781 781
         if (empty($this->elementContentMetaBundles[$key])) {
782 782
             $this->elementContentMetaBundles[$key] = $this->getMetaBundleBySourceId($source[1], $source[0], $element->siteId, $source[4]);
Please login to merge, or discard this patch.
src/services/MetaContainers.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
         // Get the page number of this request
161 161
         $request = Craft::$app->getRequest();
162 162
         if (!$request->isConsoleRequest) {
163
-            $this->paginationPage = (string)$request->pageNum;
163
+            $this->paginationPage = (string) $request->pageNum;
164 164
         }
165 165
     }
166 166
 
@@ -176,10 +176,10 @@  discard block
 block discarded – undo
176 176
         $uniqueKey = $dependency->tags[3] ?? self::GLOBALS_CACHE_KEY;
177 177
         $uniqueKey .= $bodyPosition;
178 178
         $scriptData = Craft::$app->getCache()->getOrSet(
179
-            self::GLOBALS_CACHE_KEY . $uniqueKey,
180
-            function () use ($uniqueKey, $bodyPosition) {
179
+            self::GLOBALS_CACHE_KEY.$uniqueKey,
180
+            function() use ($uniqueKey, $bodyPosition) {
181 181
                 Craft::info(
182
-                    self::SCRIPTS_CACHE_KEY . ' cache miss: ' . $uniqueKey,
182
+                    self::SCRIPTS_CACHE_KEY.' cache miss: '.$uniqueKey,
183 183
                     __METHOD__
184 184
                 );
185 185
                 $scriptData = [];
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
                             foreach ($scriptContainer->data as $metaScript) {
192 192
                                 /** @var MetaScript $metaScript */
193 193
                                 if (!empty($metaScript->bodyTemplatePath)
194
-                                    && ((int)$metaScript->bodyPosition === $bodyPosition)) {
194
+                                    && ((int) $metaScript->bodyPosition === $bodyPosition)) {
195 195
                                     $scriptData[] = $metaScript->renderBodyHtml();
196 196
                                 }
197 197
                             }
@@ -271,10 +271,10 @@  discard block
 block discarded – undo
271 271
         $dependency = $this->containerDependency;
272 272
         $uniqueKey = $dependency->tags[3] ?? self::GLOBALS_CACHE_KEY;
273 273
         list($this->metaGlobalVars, $this->metaSiteVars) = Craft::$app->getCache()->getOrSet(
274
-            self::GLOBALS_CACHE_KEY . $uniqueKey,
275
-            function () use ($uniqueKey) {
274
+            self::GLOBALS_CACHE_KEY.$uniqueKey,
275
+            function() use ($uniqueKey) {
276 276
                 Craft::info(
277
-                    self::GLOBALS_CACHE_KEY . ' cache miss: ' . $uniqueKey,
277
+                    self::GLOBALS_CACHE_KEY.' cache miss: '.$uniqueKey,
278 278
                     __METHOD__
279 279
                 );
280 280
 
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
                     ?? 1;
396 396
             }
397 397
             // Handle pagination
398
-            $paginationPage = 'page' . $this->paginationPage;
398
+            $paginationPage = 'page'.$this->paginationPage;
399 399
             // Get the path for the current request
400 400
             $request = Craft::$app->getRequest();
401 401
             $requestPath = '/';
@@ -411,21 +411,21 @@  discard block
 block discarded – undo
411 411
                 }
412 412
             }
413 413
             // Get our cache key
414
-            $cacheKey = $uri . $siteId . $paginationPage . $requestPath . $this->getAllowedUrlParams();
414
+            $cacheKey = $uri.$siteId.$paginationPage.$requestPath.$this->getAllowedUrlParams();
415 415
             // For requests with a status code of >= 400, use one cache key
416 416
             if (!$request->isConsoleRequest) {
417 417
                 $response = Craft::$app->getResponse();
418 418
                 if ($response->statusCode >= 400) {
419
-                    $cacheKey = $siteId . self::INVALID_RESPONSE_CACHE_KEY . $response->statusCode;
419
+                    $cacheKey = $siteId.self::INVALID_RESPONSE_CACHE_KEY.$response->statusCode;
420 420
                 }
421 421
             }
422 422
             // Load the meta containers
423 423
             $dependency = new TagDependency([
424 424
                 'tags' => [
425 425
                     self::GLOBAL_METACONTAINER_CACHE_TAG,
426
-                    self::METACONTAINER_CACHE_TAG . $metaBundleSourceId . $metaBundleSourceType . $siteId,
427
-                    self::METACONTAINER_CACHE_TAG . $uri . $siteId,
428
-                    self::METACONTAINER_CACHE_TAG . $cacheKey,
426
+                    self::METACONTAINER_CACHE_TAG.$metaBundleSourceId.$metaBundleSourceType.$siteId,
427
+                    self::METACONTAINER_CACHE_TAG.$uri.$siteId,
428
+                    self::METACONTAINER_CACHE_TAG.$cacheKey,
429 429
                 ],
430 430
             ]);
431 431
             $this->containerDependency = $dependency;
@@ -441,10 +441,10 @@  discard block
 block discarded – undo
441 441
             } else {
442 442
                 $cache = Craft::$app->getCache();
443 443
                 list($this->metaGlobalVars, $this->metaSiteVars, $this->metaSitemapVars, $this->metaContainers) = $cache->getOrSet(
444
-                    self::CACHE_KEY . $cacheKey,
445
-                    function () use ($uri, $siteId) {
444
+                    self::CACHE_KEY.$cacheKey,
445
+                    function() use ($uri, $siteId) {
446 446
                         Craft::info(
447
-                            'Meta container cache miss: ' . $uri . '/' . $siteId,
447
+                            'Meta container cache miss: '.$uri.'/'.$siteId,
448 448
                             __METHOD__
449 449
                         );
450 450
                         $this->loadGlobalMetaContainers($siteId);
@@ -839,10 +839,10 @@  discard block
 block discarded – undo
839 839
         $cache = Craft::$app->getCache();
840 840
         TagDependency::invalidate(
841 841
             $cache,
842
-            self::METACONTAINER_CACHE_TAG . $metaBundleSourceId . $metaBundleSourceType . $siteId
842
+            self::METACONTAINER_CACHE_TAG.$metaBundleSourceId.$metaBundleSourceType.$siteId
843 843
         );
844 844
         Craft::info(
845
-            'Meta bundle cache cleared: ' . $metaBundleSourceId . ' / ' . $metaBundleSourceType . ' / ' . $siteId,
845
+            'Meta bundle cache cleared: '.$metaBundleSourceId.' / '.$metaBundleSourceType.' / '.$siteId,
846 846
             __METHOD__
847 847
         );
848 848
         // Trigger an event to let other plugins/modules know we've cleared our caches
@@ -869,9 +869,9 @@  discard block
 block discarded – undo
869 869
         if ($siteId === null) {
870 870
             $siteId = Craft::$app->getSites()->currentSite->id ?? 1;
871 871
         }
872
-        TagDependency::invalidate($cache, self::METACONTAINER_CACHE_TAG . $uri . $siteId);
872
+        TagDependency::invalidate($cache, self::METACONTAINER_CACHE_TAG.$uri.$siteId);
873 873
         Craft::info(
874
-            'Meta container cache cleared: ' . $uri . ' / ' . $siteId,
874
+            'Meta container cache cleared: '.$uri.' / '.$siteId,
875 875
             __METHOD__
876 876
         );
877 877
         // Trigger an event to let other plugins/modules know we've cleared our caches
@@ -988,7 +988,7 @@  discard block
 block discarded – undo
988 988
 
989 989
                     // Handle re-creating the `mainEntityOfPage` so that the model injected into the
990 990
                     // templates has the appropriate attributes
991
-                    $generalContainerKey = MetaJsonLdContainer::CONTAINER_TYPE . JsonLdService::GENERAL_HANDLE;
991
+                    $generalContainerKey = MetaJsonLdContainer::CONTAINER_TYPE.JsonLdService::GENERAL_HANDLE;
992 992
                     $generalContainer = $this->metaContainers[$generalContainerKey];
993 993
                     if (($generalContainer !== null) && !empty($generalContainer->data['mainEntityOfPage'])) {
994 994
                         /** @var MetaJsonLd $jsonLdModel */
Please login to merge, or discard this patch.