Passed
Push — dependency-injection ( 1a3514...1a37d3 )
by MusikAnimal
04:41
created
src/Model/ArticleInfoApi.php 1 patch
Spacing   +12 added lines, -12 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
 
@@ -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
         ];
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
         if ($info) {
285 285
             $creationDateTime = DateTime::createFromFormat('YmdHis', $info['created_at']);
286 286
             $modifiedDateTime = DateTime::createFromFormat('YmdHis', $info['modified_at']);
287
-            $secsSinceLastEdit = (new DateTime)->getTimestamp() - $modifiedDateTime->getTimestamp();
287
+            $secsSinceLastEdit = (new DateTime)->getTimestamp()-$modifiedDateTime->getTimestamp();
288 288
 
289 289
             // Some wikis (such foundation.wikimedia.org) may be missing the creation date.
290 290
             $creationDateTime = false === $creationDateTime
@@ -296,16 +296,16 @@  discard block
 block discarded – undo
296 296
                 ->getAssessment($page);
297 297
 
298 298
             $data = array_merge($data, [
299
-                'revisions' => (int) $info['num_edits'],
300
-                'editors' => (int) $info['num_editors'],
301
-                'minor_edits' => (int) $info['minor_edits'],
299
+                'revisions' => (int)$info['num_edits'],
300
+                'editors' => (int)$info['num_editors'],
301
+                'minor_edits' => (int)$info['minor_edits'],
302 302
                 'author' => $info['author'],
303
-                'author_editcount' => null === $info['author_editcount'] ? null : (int) $info['author_editcount'],
303
+                'author_editcount' => null === $info['author_editcount'] ? null : (int)$info['author_editcount'],
304 304
                 'created_at' => $creationDateTime,
305 305
                 'created_rev_id' => $info['created_rev_id'],
306 306
                 'modified_at' => $modifiedDateTime->format('Y-m-d H:i'),
307 307
                 'secs_since_last_edit' => $secsSinceLastEdit,
308
-                'last_edit_id' => (int) $info['modified_rev_id'],
308
+                'last_edit_id' => (int)$info['modified_rev_id'],
309 309
                 'assessment' => $assessment,
310 310
             ]);
311 311
         }
@@ -455,8 +455,8 @@  discard block
 block discarded – undo
455 455
         }
456 456
 
457 457
         // Sort by edit count.
458
-        uasort($this->bots, function ($a, $b) {
459
-            return $b['count'] - $a['count'];
458
+        uasort($this->bots, function($a, $b) {
459
+            return $b['count']-$a['count'];
460 460
         });
461 461
 
462 462
         return $this->bots;
Please login to merge, or discard this patch.