@@ -51,7 +51,7 @@ |
||
51 | 51 | return true; |
52 | 52 | } |
53 | 53 | |
54 | - /** |
|
54 | + /** |
|
55 | 55 | * @inheritdoc |
56 | 56 | */ |
57 | 57 | public function safeDown() |
@@ -51,7 +51,7 @@ |
||
51 | 51 | self::$config['server']['publicPath'] = $baseAssetsUrl; |
52 | 52 | $useDevServer = getenv('NYS_PLUGIN_DEVSERVER'); |
53 | 53 | if ($useDevServer !== false) { |
54 | - self::$config['useDevServer'] = (bool)$useDevServer; |
|
54 | + self::$config['useDevServer'] = (bool) $useDevServer; |
|
55 | 55 | } |
56 | 56 | } |
57 | 57 |
@@ -405,7 +405,7 @@ discard block |
||
405 | 405 | $cache = Craft::$app->getCache(); |
406 | 406 | $file = $cache->getOrSet( |
407 | 407 | self::CACHE_KEY.$path, |
408 | - function () use ($path, $callback) { |
|
408 | + function() use ($path, $callback) { |
|
409 | 409 | $result = null; |
410 | 410 | $contents = @file_get_contents($path); |
411 | 411 | if ($contents) { |
@@ -435,7 +435,7 @@ discard block |
||
435 | 435 | protected static function combinePaths(string ...$paths): string |
436 | 436 | { |
437 | 437 | $last_key = \count($paths) - 1; |
438 | - array_walk($paths, function (&$val, $key) use ($last_key) { |
|
438 | + array_walk($paths, function(&$val, $key) use ($last_key) { |
|
439 | 439 | switch ($key) { |
440 | 440 | case 0: |
441 | 441 | $val = rtrim($val, '/ '); |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | ->offset($offset) |
80 | 80 | ->limit($per_page) |
81 | 81 | ->orderBy("{$sortField} {$sortType}"); |
82 | - if ((int)$siteId !== 0) { |
|
82 | + if ((int) $siteId !== 0) { |
|
83 | 83 | $query->where(['siteId' => $siteId]); |
84 | 84 | } |
85 | 85 | if ($filter !== '') { |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | ->offset($offset) |
161 | 161 | ->limit($per_page) |
162 | 162 | ->orderBy("{$sortField} {$sortType}"); |
163 | - if ((int)$siteId !== 0) { |
|
163 | + if ((int) $siteId !== 0) { |
|
164 | 164 | $query->where(['siteId' => $siteId]); |
165 | 165 | } |
166 | 166 | if ($filter !== '') { |
@@ -10,7 +10,7 @@ |
||
10 | 10 | |
11 | 11 | namespace { |
12 | 12 | |
13 | - require_once __DIR__ . '/../lib/geoiploc.php'; |
|
13 | + require_once __DIR__.'/../lib/geoiploc.php'; |
|
14 | 14 | } |
15 | 15 | |
16 | 16 | namespace nystudio107\webperf\controllers { |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | if (!empty($string)) { |
44 | 44 | $string = strip_tags($string); |
45 | - $result = (string)Stringy::create($string)->truncate($length, $substring); |
|
45 | + $result = (string) Stringy::create($string)->truncate($length, $substring); |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | return $result; |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | |
67 | 67 | if (!empty($string)) { |
68 | 68 | $string = strip_tags($string); |
69 | - $result = (string)Stringy::create($string)->safeTruncate($length, $substring); |
|
69 | + $result = (string) Stringy::create($string)->safeTruncate($length, $substring); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | return $result; |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | } else { |
113 | 113 | $variables['sitesMenuLabel'] = Craft::t( |
114 | 114 | 'site', |
115 | - $sites->getSiteById((int)$variables['currentSiteId'])->name |
|
115 | + $sites->getSiteById((int) $variables['currentSiteId'])->name |
|
116 | 116 | ); |
117 | 117 | } |
118 | 118 | } else { |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | } |
173 | 173 | |
174 | 174 | if (($parsed = parse_url(self::getBaseUrl($site))) === false) { |
175 | - Craft::warning('Unable to parse the site base URL: ' . $site->baseUrl); |
|
175 | + Craft::warning('Unable to parse the site base URL: '.$site->baseUrl); |
|
176 | 176 | continue; |
177 | 177 | } |
178 | 178 | |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | |
184 | 184 | // Does the site URL specify a base path? |
185 | 185 | $parsedPath = !empty($parsed['path']) ? self::normalizePath($parsed['path']) : ''; |
186 | - if ($parsedPath && strpos($fullUri . '/', $parsedPath . '/') !== 0) { |
|
186 | + if ($parsedPath && strpos($fullUri.'/', $parsedPath.'/') !== 0) { |
|
187 | 187 | continue; |
188 | 188 | } |
189 | 189 | |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | protected static function getBaseUrl(Site $site): string |
258 | 258 | { |
259 | 259 | if ($site->baseUrl) { |
260 | - return rtrim(self::parseEnv($site->baseUrl), '/') . '/'; |
|
260 | + return rtrim(self::parseEnv($site->baseUrl), '/').'/'; |
|
261 | 261 | } |
262 | 262 | |
263 | 263 | return null; |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | Event::on( |
157 | 157 | Plugins::class, |
158 | 158 | Plugins::EVENT_AFTER_INSTALL_PLUGIN, |
159 | - function (PluginEvent $event) { |
|
159 | + function(PluginEvent $event) { |
|
160 | 160 | if ($event->plugin === $this) { |
161 | 161 | // Invalidate our caches after we've been installed |
162 | 162 | $this->clearAllCaches(); |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | Event::on( |
185 | 185 | CraftVariable::class, |
186 | 186 | CraftVariable::EVENT_INIT, |
187 | - function (Event $event) { |
|
187 | + function(Event $event) { |
|
188 | 188 | /** @var CraftVariable $variable */ |
189 | 189 | $variable = $event->sender; |
190 | 190 | $variable->set('webperf', WebperfVariable::class); |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | Event::on( |
195 | 195 | Plugins::class, |
196 | 196 | Plugins::EVENT_AFTER_LOAD_PLUGINS, |
197 | - function () { |
|
197 | + function() { |
|
198 | 198 | // Install these only after all other plugins have loaded |
199 | 199 | $request = Craft::$app->getRequest(); |
200 | 200 | // Only respond to non-console site requests |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | Event::on( |
219 | 219 | UrlManager::class, |
220 | 220 | UrlManager::EVENT_REGISTER_SITE_URL_RULES, |
221 | - function (RegisterUrlRulesEvent $event) { |
|
221 | + function(RegisterUrlRulesEvent $event) { |
|
222 | 222 | Craft::debug( |
223 | 223 | 'UrlManager::EVENT_REGISTER_SITE_URL_RULES', |
224 | 224 | __METHOD__ |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | Event::on( |
242 | 242 | UrlManager::class, |
243 | 243 | UrlManager::EVENT_REGISTER_CP_URL_RULES, |
244 | - function (RegisterUrlRulesEvent $event) { |
|
244 | + function(RegisterUrlRulesEvent $event) { |
|
245 | 245 | Craft::debug( |
246 | 246 | 'UrlManager::EVENT_REGISTER_CP_URL_RULES', |
247 | 247 | __METHOD__ |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | Event::on( |
258 | 258 | Dashboard::class, |
259 | 259 | Dashboard::EVENT_REGISTER_WIDGET_TYPES, |
260 | - function (RegisterComponentTypesEvent $event) { |
|
260 | + function(RegisterComponentTypesEvent $event) { |
|
261 | 261 | $event->types[] = MetricsWidget::class; |
262 | 262 | } |
263 | 263 | ); |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | Event::on( |
266 | 266 | UserPermissions::class, |
267 | 267 | UserPermissions::EVENT_REGISTER_PERMISSIONS, |
268 | - function (RegisterUserPermissionsEvent $event) { |
|
268 | + function(RegisterUserPermissionsEvent $event) { |
|
269 | 269 | Craft::debug( |
270 | 270 | 'UserPermissions::EVENT_REGISTER_PERMISSIONS', |
271 | 271 | __METHOD__ |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | Event::on( |
291 | 291 | View::class, |
292 | 292 | View::EVENT_END_PAGE, |
293 | - function () { |
|
293 | + function() { |
|
294 | 294 | Craft::debug( |
295 | 295 | 'View::EVENT_END_PAGE', |
296 | 296 | __METHOD__ |
@@ -313,7 +313,7 @@ discard block |
||
313 | 313 | Event::on( |
314 | 314 | View::class, |
315 | 315 | View::EVENT_END_BODY, |
316 | - function () { |
|
316 | + function() { |
|
317 | 317 | Craft::debug( |
318 | 318 | 'View::EVENT_END_BODY', |
319 | 319 | __METHOD__ |
@@ -87,8 +87,8 @@ |
||
87 | 87 | } |
88 | 88 | } |
89 | 89 | $this->stats[$cat]['count']++; |
90 | - $this->stats[$cat]['duration'] += (float)$timing['duration'] * 1000; |
|
91 | - $this->stats[$cat]['memory'] += (int)$timing['memoryDiff']; |
|
90 | + $this->stats[$cat]['duration'] += (float) $timing['duration'] * 1000; |
|
91 | + $this->stats[$cat]['memory'] += (int) $timing['memoryDiff']; |
|
92 | 92 | } |
93 | 93 | if ($final) { |
94 | 94 | $this->export(); |