Passed
Pull Request — main (#458)
by MusikAnimal
06:01 queued 03:09
created
src/Model/ArticleInfoApi.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace App\Model;
6 6
 
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
         [$bytes, $chars, $words] = $this->countCharsAndWords($crawler);
172 172
 
173 173
         $refContent = [];
174
-        $refs->each(function ($ref) use (&$refContent): void {
174
+        $refs->each(function($ref) use (&$refContent): void {
175 175
             $refContent[] = $ref->text();
176 176
         });
177 177
         $uniqueRefs = count(array_unique($refContent));
@@ -206,13 +206,13 @@  discard block
 block discarded – undo
206 206
             '[typeof~="mw:Extension/templatestyles"]',
207 207
             '[typeof~="mw:Extension/math"]',
208 208
             '[typeof~="mw:Extension/ref"]',
209
-        ]))->each(function (Crawler $subCrawler) {
209
+        ]))->each(function(Crawler $subCrawler) {
210 210
             foreach ($subCrawler as $subNode) {
211 211
                 $subNode->parentNode->removeChild($subNode);
212 212
             }
213 213
         });
214 214
 
215
-        $paragraphs->each(function ($node) use (&$totalBytes, &$totalChars, &$totalWords): void {
215
+        $paragraphs->each(function($node) use (&$totalBytes, &$totalChars, &$totalWords): void {
216 216
             /** @var Crawler $node */
217 217
             $text = $node->text();
218 218
             $totalBytes += strlen($text);
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
         $data = [
275 275
             'project' => $project->getDomain(),
276 276
             'page' => $page->getTitle(),
277
-            'watchers' => (int) $page->getWatchers(),
277
+            'watchers' => (int)$page->getWatchers(),
278 278
             'pageviews' => $page->getLatestPageviews(),
279 279
             'pageviews_offset' => self::PAGEVIEWS_OFFSET,
280 280
         ];
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
         if ($info) {
298 298
             $creationDateTime = DateTime::createFromFormat('YmdHis', $info['created_at']);
299 299
             $modifiedDateTime = DateTime::createFromFormat('YmdHis', $info['modified_at']);
300
-            $secsSinceLastEdit = (new DateTime)->getTimestamp() - $modifiedDateTime->getTimestamp();
300
+            $secsSinceLastEdit = (new DateTime)->getTimestamp()-$modifiedDateTime->getTimestamp();
301 301
 
302 302
             // Some wikis (such foundation.wikimedia.org) may be missing the creation date.
303 303
             $creationDateTime = false === $creationDateTime
@@ -309,16 +309,16 @@  discard block
 block discarded – undo
309 309
                 ->getAssessment($page);
310 310
 
311 311
             $data = array_merge($data, [
312
-                'revisions' => (int) $info['num_edits'],
313
-                'editors' => (int) $info['num_editors'],
314
-                'minor_edits' => (int) $info['minor_edits'],
312
+                'revisions' => (int)$info['num_edits'],
313
+                'editors' => (int)$info['num_editors'],
314
+                'minor_edits' => (int)$info['minor_edits'],
315 315
                 'author' => $info['author'],
316
-                'author_editcount' => null === $info['author_editcount'] ? null : (int) $info['author_editcount'],
316
+                'author_editcount' => null === $info['author_editcount'] ? null : (int)$info['author_editcount'],
317 317
                 'created_at' => $creationDateTime,
318 318
                 'created_rev_id' => $info['created_rev_id'],
319 319
                 'modified_at' => $modifiedDateTime->format('Y-m-d H:i'),
320 320
                 'secs_since_last_edit' => $secsSinceLastEdit,
321
-                'last_edit_id' => (int) $info['modified_rev_id'],
321
+                'last_edit_id' => (int)$info['modified_rev_id'],
322 322
                 'assessment' => $assessment,
323 323
             ]);
324 324
         }
@@ -468,8 +468,8 @@  discard block
 block discarded – undo
468 468
         }
469 469
 
470 470
         // Sort by edit count.
471
-        uasort($this->bots, function ($a, $b) {
472
-            return $b['count'] - $a['count'];
471
+        uasort($this->bots, function($a, $b) {
472
+            return $b['count']-$a['count'];
473 473
         });
474 474
 
475 475
         return $this->bots;
Please login to merge, or discard this patch.
src/Controller/ArticleInfoController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -264,7 +264,7 @@
 block discarded – undo
264 264
     ): JsonResponse {
265 265
         $this->recordApiUsage('page/prose');
266 266
         $this->setupArticleInfo($articleInfoRepo, $autoEditsHelper);
267
-        $this->addFlash('info', 'The algorithm used by this API has recently changed. ' .
267
+        $this->addFlash('info', 'The algorithm used by this API has recently changed. '.
268 268
             'See https://www.mediawiki.org/wiki/XTools/Page_History#Prose for details.');
269 269
         $ret = $this->articleInfo->getProseStats();
270 270
         if (null === $ret) {
Please login to merge, or discard this patch.
src/Repository/PageRepository.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace App\Repository;
6 6
 
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
 
306 306
         $wikidataId = ltrim($page->getWikidataId(), 'Q');
307 307
 
308
-        $sql = "SELECT " . ($count ? 'COUNT(*) AS count' : '*') . "
308
+        $sql = "SELECT ".($count ? 'COUNT(*) AS count' : '*')."
309 309
                 FROM wikidatawiki_p.wb_items_per_site
310 310
                 WHERE ips_item_id = :wikidataId";
311 311
 
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
             'wikidataId' => $wikidataId,
314 314
         ])->fetchAllAssociative();
315 315
 
316
-        return $count ? (int) $result[0]['count'] : $result;
316
+        return $count ? (int)$result[0]['count'] : $result;
317 317
     }
318 318
 
319 319
     /**
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
 
352 352
         // Transform to associative array by 'type'
353 353
         foreach ($res as $row) {
354
-            $data[$row['type'] . '_count'] = (int)$row['value'];
354
+            $data[$row['type'].'_count'] = (int)$row['value'];
355 355
         }
356 356
 
357 357
         return $data;
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
 
400 400
         $project = $page->getProject()->getDomain();
401 401
 
402
-        $url = 'https://wikimedia.org/api/rest_v1/metrics/pageviews/per-article/' .
402
+        $url = 'https://wikimedia.org/api/rest_v1/metrics/pageviews/per-article/'.
403 403
             "$project/all-access/user/$title/daily/$start/$end";
404 404
 
405 405
         try {
@@ -409,7 +409,7 @@  discard block
 block discarded – undo
409 409
             ]);
410 410
             $pageviews = json_decode($res->getBody()->getContents(), true);
411 411
             return $pageviews;
412
-        } catch (ServerException|ConnectException $e) {
412
+        } catch (ServerException | ConnectException $e) {
413 413
             throw new BadGatewayException('api-error-wikimedia', $e);
414 414
         }
415 415
     }
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
     {
425 425
         if ($this->isWMF) {
426 426
             $domain = $page->getProject()->getDomain();
427
-            $url = "https://$domain/api/rest_v1/page/html/" . urlencode(str_replace(' ', '_', $page->getTitle()));
427
+            $url = "https://$domain/api/rest_v1/page/html/".urlencode(str_replace(' ', '_', $page->getTitle()));
428 428
             if (null !== $revId) {
429 429
                 $url .= "/$revId";
430 430
             }
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
             $normalized = [];
493 493
             if (isset($result['query']['normalized'])) {
494 494
                 array_map(
495
-                    function ($e) use (&$normalized): void {
495
+                    function($e) use (&$normalized): void {
496 496
                         $normalized[$e['to']] = $e['from'];
497 497
                     },
498 498
                     $result['query']['normalized']
Please login to merge, or discard this patch.