Passed
Push — main ( 39dce4...d5a83e )
by MusikAnimal
03:57
created
src/AppBundle/Model/ArticleInfoApi.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace AppBundle\Model;
5 5
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     public function getMaxRevisions(): int
90 90
     {
91 91
         if (!isset($this->maxRevisions)) {
92
-            $this->maxRevisions = (int) $this->container->getParameter('app.max_page_revisions');
92
+            $this->maxRevisions = (int)$this->container->getParameter('app.max_page_revisions');
93 93
         }
94 94
         return $this->maxRevisions;
95 95
     }
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 
170 170
         $refs = $crawler->filter('#mw-content-text .reference');
171 171
         $refContent = [];
172
-        $refs->each(function ($ref) use (&$refContent): void {
172
+        $refs->each(function($ref) use (&$refContent): void {
173 173
             $refContent[] = $ref->text();
174 174
         });
175 175
         $uniqueRefs = count(array_unique($refContent));
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
         $totalChars = 0;
198 198
         $totalWords = 0;
199 199
         $paragraphs = $crawler->filter($selector);
200
-        $paragraphs->each(function ($node) use (&$totalChars, &$totalWords): void {
200
+        $paragraphs->each(function($node) use (&$totalChars, &$totalWords): void {
201 201
             /** @var Crawler $node */
202 202
             $text = preg_replace('/\[\d+]/', '', trim($node->text(null, true)));
203 203
             $totalChars += strlen($text);
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
         $data = [
262 262
             'project' => $project->getDomain(),
263 263
             'page' => $page->getTitle(),
264
-            'watchers' => (int) $page->getWatchers(),
264
+            'watchers' => (int)$page->getWatchers(),
265 265
             'pageviews' => $page->getLastPageviews($pageviewsOffset),
266 266
             'pageviews_offset' => $pageviewsOffset,
267 267
         ];
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
         if (false !== $info) {
287 287
             $creationDateTime = DateTime::createFromFormat('YmdHis', $info['created_at']);
288 288
             $modifiedDateTime = DateTime::createFromFormat('YmdHis', $info['modified_at']);
289
-            $secsSinceLastEdit = (new DateTime)->getTimestamp() - $modifiedDateTime->getTimestamp();
289
+            $secsSinceLastEdit = (new DateTime)->getTimestamp()-$modifiedDateTime->getTimestamp();
290 290
 
291 291
             // Some wikis (such foundation.wikimedia.org) may be missing the creation date.
292 292
             $creationDateTime = false === $creationDateTime
@@ -298,16 +298,16 @@  discard block
 block discarded – undo
298 298
                 ->getAssessment($page);
299 299
 
300 300
             $data = array_merge($data, [
301
-                'revisions' => (int) $info['num_edits'],
302
-                'editors' => (int) $info['num_editors'],
303
-                'minor_edits' => (int) $info['minor_edits'],
301
+                'revisions' => (int)$info['num_edits'],
302
+                'editors' => (int)$info['num_editors'],
303
+                'minor_edits' => (int)$info['minor_edits'],
304 304
                 'author' => $info['author'],
305
-                'author_editcount' => null === $info['author_editcount'] ? null : (int) $info['author_editcount'],
305
+                'author_editcount' => null === $info['author_editcount'] ? null : (int)$info['author_editcount'],
306 306
                 'created_at' => $creationDateTime,
307 307
                 'created_rev_id' => $info['created_rev_id'],
308 308
                 'modified_at' => $modifiedDateTime->format('Y-m-d H:i'),
309 309
                 'secs_since_last_edit' => $secsSinceLastEdit,
310
-                'last_edit_id' => (int) $info['modified_rev_id'],
310
+                'last_edit_id' => (int)$info['modified_rev_id'],
311 311
                 'assessment' => $assessment,
312 312
             ]);
313 313
         }
@@ -459,8 +459,8 @@  discard block
 block discarded – undo
459 459
         }
460 460
 
461 461
         // Sort by edit count.
462
-        uasort($this->bots, function ($a, $b) {
463
-            return $b['count'] - $a['count'];
462
+        uasort($this->bots, function($a, $b) {
463
+            return $b['count']-$a['count'];
464 464
         });
465 465
 
466 466
         return $this->bots;
Please login to merge, or discard this patch.