@@ -207,10 +207,10 @@ |
||
207 | 207 | } |
208 | 208 | // Make sure these are strings |
209 | 209 | if (!empty($this->facebookProfileId)) { |
210 | - $this->facebookProfileId = (string)$this->facebookProfileId; |
|
210 | + $this->facebookProfileId = (string) $this->facebookProfileId; |
|
211 | 211 | } |
212 | 212 | if (!empty($this->facebookAppId)) { |
213 | - $this->facebookAppId = (string)$this->facebookAppId; |
|
213 | + $this->facebookAppId = (string) $this->facebookAppId; |
|
214 | 214 | } |
215 | 215 | // Identity |
216 | 216 | if ($this->identity !== null && \is_array($this->identity)) { |
@@ -56,7 +56,7 @@ |
||
56 | 56 | $className = MetaTag::class; |
57 | 57 | if ($tagType) { |
58 | 58 | // Potentially load a sub-type of MetaTag |
59 | - $tagClassName = 'nystudio107\\seomatic\\models\\metatag\\' . ucfirst($tagType) . 'Tag'; |
|
59 | + $tagClassName = 'nystudio107\\seomatic\\models\\metatag\\'.ucfirst($tagType).'Tag'; |
|
60 | 60 | /** @var $model MetaTag */ |
61 | 61 | if (class_exists($tagClassName)) { |
62 | 62 | $className = $tagClassName; |
@@ -94,10 +94,10 @@ |
||
94 | 94 | public function init() |
95 | 95 | { |
96 | 96 | // Enforce types |
97 | - $this->sitemapUrls = (bool)$this->sitemapUrls; |
|
98 | - $this->sitemapAssets = (bool)$this->sitemapAssets; |
|
99 | - $this->sitemapFiles = (bool)$this->sitemapFiles; |
|
100 | - $this->sitemapAltLinks = (bool)$this->sitemapAltLinks; |
|
97 | + $this->sitemapUrls = (bool) $this->sitemapUrls; |
|
98 | + $this->sitemapAssets = (bool) $this->sitemapAssets; |
|
99 | + $this->sitemapFiles = (bool) $this->sitemapFiles; |
|
100 | + $this->sitemapAltLinks = (bool) $this->sitemapAltLinks; |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | } |
114 | 114 | $asset = self::assetFromAssetOrId($asset, $siteId); |
115 | 115 | if (($asset !== null) && ($asset instanceof Asset)) { |
116 | - $width = (string)$asset->getWidth($transform); |
|
116 | + $width = (string) $asset->getWidth($transform); |
|
117 | 117 | if ($width === null) { |
118 | 118 | $width = ''; |
119 | 119 | } |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | } |
145 | 145 | $asset = self::assetFromAssetOrId($asset, $siteId); |
146 | 146 | if (($asset !== null) && ($asset instanceof Asset)) { |
147 | - $height = (string)$asset->getHeight($transform); |
|
147 | + $height = (string) $asset->getHeight($transform); |
|
148 | 148 | if ($height === null) { |
149 | 149 | $height = ''; |
150 | 150 | } |
@@ -106,7 +106,7 @@ |
||
106 | 106 | */ |
107 | 107 | private static function getConfigFilePath(string $alias, string $filePath): string |
108 | 108 | { |
109 | - $path = DIRECTORY_SEPARATOR . ltrim($filePath, DIRECTORY_SEPARATOR); |
|
109 | + $path = DIRECTORY_SEPARATOR.ltrim($filePath, DIRECTORY_SEPARATOR); |
|
110 | 110 | $path = Craft::getAlias($alias) |
111 | 111 | . DIRECTORY_SEPARATOR |
112 | 112 | . self::LOCAL_CONFIG_DIR |
@@ -64,7 +64,7 @@ |
||
64 | 64 | |
65 | 65 | // Render the template with our vars passed in |
66 | 66 | try { |
67 | - $htmlText = Craft::$app->view->renderTemplate('seomatic/' . $templatePath, $params); |
|
67 | + $htmlText = Craft::$app->view->renderTemplate('seomatic/'.$templatePath, $params); |
|
68 | 68 | $templateRendered = true; |
69 | 69 | } catch (\Exception $e) { |
70 | 70 | $htmlText = Craft::t( |
@@ -196,11 +196,11 @@ |
||
196 | 196 | foreach ($typesArray as $key => $value) { |
197 | 197 | $indent = html_entity_decode(str_repeat(' ', $indentLevel)); |
198 | 198 | if (\is_array($value)) { |
199 | - $result[$key] = $indent . $key; |
|
199 | + $result[$key] = $indent.$key; |
|
200 | 200 | $value = self::flattenSchemaArray($value, $indentLevel + self::MENU_INDENT_STEP); |
201 | 201 | $result = array_merge($result, $value); |
202 | 202 | } else { |
203 | - $result[$key] = $indent . $value; |
|
203 | + $result[$key] = $indent.$value; |
|
204 | 204 | } |
205 | 205 | } |
206 | 206 |
@@ -205,7 +205,7 @@ |
||
205 | 205 | // Prefix the keys with the global set name |
206 | 206 | $prefix = $global->handle; |
207 | 207 | $fields = array_combine( |
208 | - array_map(function ($key) use ($prefix) { |
|
208 | + array_map(function($key) use ($prefix) { |
|
209 | 209 | return $prefix.'.'.$key; |
210 | 210 | }, array_keys($fields)), |
211 | 211 | $fields |
@@ -226,7 +226,7 @@ |
||
226 | 226 | { |
227 | 227 | $rules = parent::rules(); |
228 | 228 | $rules = array_merge($rules, [ |
229 | - [['currenciesAccepted','openingHours','paymentAccepted','priceRange'], 'validateJsonSchema'], |
|
229 | + [['currenciesAccepted', 'openingHours', 'paymentAccepted', 'priceRange'], 'validateJsonSchema'], |
|
230 | 230 | [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'], |
231 | 231 | [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.'] |
232 | 232 | ]); |