@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types = 1); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace App\Model; |
| 6 | 6 | |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | |
| 161 | 161 | // Filter out unblocks unless requested. |
| 162 | 162 | if ($blocksOnly) { |
| 163 | - $blocks = array_filter($blocks, function ($block) { |
|
| 163 | + $blocks = array_filter($blocks, function($block) { |
|
| 164 | 164 | return 'block' === $block['log_action']; |
| 165 | 165 | }); |
| 166 | 166 | } |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | */ |
| 195 | 195 | public function countAllRevisions(): int |
| 196 | 196 | { |
| 197 | - return $this->countLiveRevisions() + $this->countDeletedRevisions(); |
|
| 197 | + return $this->countLiveRevisions()+$this->countDeletedRevisions(); |
|
| 198 | 198 | } |
| 199 | 199 | |
| 200 | 200 | /** |
@@ -233,7 +233,7 @@ discard block |
||
| 233 | 233 | */ |
| 234 | 234 | public function countAllPagesEdited(): int |
| 235 | 235 | { |
| 236 | - return $this->countLivePagesEdited() + $this->countDeletedPagesEdited(); |
|
| 236 | + return $this->countLivePagesEdited()+$this->countDeletedPagesEdited(); |
|
| 237 | 237 | } |
| 238 | 238 | |
| 239 | 239 | /** |
@@ -243,7 +243,7 @@ discard block |
||
| 243 | 243 | */ |
| 244 | 244 | public function countPagesCreated(): int |
| 245 | 245 | { |
| 246 | - return $this->countCreatedPagesLive() + $this->countPagesCreatedDeleted(); |
|
| 246 | + return $this->countCreatedPagesLive()+$this->countPagesCreatedDeleted(); |
|
| 247 | 247 | } |
| 248 | 248 | |
| 249 | 249 | /** |
@@ -372,7 +372,7 @@ discard block |
||
| 372 | 372 | } elseif ('unblock' === $block['log_action']) { |
| 373 | 373 | // The last block was lifted. So the duration will be the time from when the |
| 374 | 374 | // last block was set to the time of the unblock. |
| 375 | - $timeSinceLastBlock = $timestamp - $lastBlock[0]; |
|
| 375 | + $timeSinceLastBlock = $timestamp-$lastBlock[0]; |
|
| 376 | 376 | if ($timeSinceLastBlock > $this->longestBlockSeconds) { |
| 377 | 377 | $this->longestBlockSeconds = $timeSinceLastBlock; |
| 378 | 378 | |
@@ -383,8 +383,8 @@ discard block |
||
| 383 | 383 | // The last block was modified. So we will adjust $lastBlock to include |
| 384 | 384 | // the difference of the duration of the new reblock, and time since the last block. |
| 385 | 385 | // $lastBlock is left unchanged if its duration was indefinite. |
| 386 | - $timeSinceLastBlock = $timestamp - $lastBlock[0]; |
|
| 387 | - $lastBlock[1] = $timeSinceLastBlock + $duration; |
|
| 386 | + $timeSinceLastBlock = $timestamp-$lastBlock[0]; |
|
| 387 | + $lastBlock[1] = $timeSinceLastBlock+$duration; |
|
| 388 | 388 | } |
| 389 | 389 | } |
| 390 | 390 | |
@@ -394,7 +394,7 @@ discard block |
||
| 394 | 394 | } |
| 395 | 395 | |
| 396 | 396 | // Test if the last block is still active, and if so use the expiry as the duration. |
| 397 | - $lastBlockExpiry = $lastBlock[0] + $lastBlock[1]; |
|
| 397 | + $lastBlockExpiry = $lastBlock[0]+$lastBlock[1]; |
|
| 398 | 398 | if ($lastBlockExpiry > time() && $lastBlockExpiry > $this->longestBlockSeconds) { |
| 399 | 399 | $this->longestBlockSeconds = $lastBlock[1]; |
| 400 | 400 | // Otherwise, test if the duration of the last block is now the longest overall. |
@@ -438,7 +438,7 @@ discard block |
||
| 438 | 438 | // If invalid, $duration is left as null. |
| 439 | 439 | if (strtotime($durationStr)) { |
| 440 | 440 | $expiry = strtotime($durationStr, $timestamp); |
| 441 | - $duration = $expiry - $timestamp; |
|
| 441 | + $duration = $expiry-$timestamp; |
|
| 442 | 442 | } |
| 443 | 443 | |
| 444 | 444 | return [$timestamp, $duration]; |
@@ -525,7 +525,7 @@ discard block |
||
| 525 | 525 | $import = $logCounts['import-import'] ?? 0; |
| 526 | 526 | $interwiki = $logCounts['import-interwiki'] ?? 0; |
| 527 | 527 | $upload = $logCounts['import-upload'] ?? 0; |
| 528 | - return $import + $interwiki + $upload; |
|
| 528 | + return $import+$interwiki+$upload; |
|
| 529 | 529 | } |
| 530 | 530 | |
| 531 | 531 | /** |
@@ -547,7 +547,7 @@ discard block |
||
| 547 | 547 | $logCounts = $this->getLogCounts(); |
| 548 | 548 | $new = $logCounts['contentmodel-new'] ?? 0; |
| 549 | 549 | $modified = $logCounts['contentmodel-change'] ?? 0; |
| 550 | - return $new + $modified; |
|
| 550 | + return $new+$modified; |
|
| 551 | 551 | } |
| 552 | 552 | |
| 553 | 553 | /** |
@@ -676,9 +676,9 @@ discard block |
||
| 676 | 676 | public function approvals(): int |
| 677 | 677 | { |
| 678 | 678 | $logCounts = $this->getLogCounts(); |
| 679 | - return (!empty($logCounts['review-approve']) ? $logCounts['review-approve'] : 0) + |
|
| 680 | - (!empty($logCounts['review-approve2']) ? $logCounts['review-approve2'] : 0) + |
|
| 681 | - (!empty($logCounts['review-approve-i']) ? $logCounts['review-approve-i'] : 0) + |
|
| 679 | + return (!empty($logCounts['review-approve']) ? $logCounts['review-approve'] : 0)+ |
|
| 680 | + (!empty($logCounts['review-approve2']) ? $logCounts['review-approve2'] : 0)+ |
|
| 681 | + (!empty($logCounts['review-approve-i']) ? $logCounts['review-approve-i'] : 0)+ |
|
| 682 | 682 | (!empty($logCounts['review-approve2-i']) ? $logCounts['review-approve2-i'] : 0); |
| 683 | 683 | } |
| 684 | 684 | |
@@ -701,7 +701,7 @@ discard block |
||
| 701 | 701 | $logCounts = $this->getLogCounts(); |
| 702 | 702 | $create2 = $logCounts['newusers-create2'] ?: 0; |
| 703 | 703 | $byemail = $logCounts['newusers-byemail'] ?: 0; |
| 704 | - return $create2 + $byemail; |
|
| 704 | + return $create2+$byemail; |
|
| 705 | 705 | } |
| 706 | 706 | |
| 707 | 707 | /** |
@@ -803,7 +803,7 @@ discard block |
||
| 803 | 803 | |
| 804 | 804 | $totals = $this->repository->getMonthCounts($this->project, $this->user); |
| 805 | 805 | $out = [ |
| 806 | - 'yearLabels' => [], // labels for years |
|
| 806 | + 'yearLabels' => [], // labels for years |
|
| 807 | 807 | 'monthLabels' => [], // labels for months |
| 808 | 808 | 'totals' => [], // actual totals, grouped by namespace, year and then month |
| 809 | 809 | ]; |
@@ -897,7 +897,7 @@ discard block |
||
| 897 | 897 | $out['totals'][$ns][$total['year']] = []; |
| 898 | 898 | } |
| 899 | 899 | |
| 900 | - $out['totals'][$ns][$total['year']][$total['month']] = (int) $total['count']; |
|
| 900 | + $out['totals'][$ns][$total['year']][$total['month']] = (int)$total['count']; |
|
| 901 | 901 | } |
| 902 | 902 | |
| 903 | 903 | return [$out, $firstEdit]; |
@@ -914,9 +914,9 @@ discard block |
||
| 914 | 914 | private function fillInMonthTotalsAndLabels(array $out, DatePeriod $dateRange): array |
| 915 | 915 | { |
| 916 | 916 | foreach ($dateRange as $monthObj) { |
| 917 | - $year = (int) $monthObj->format('Y'); |
|
| 917 | + $year = (int)$monthObj->format('Y'); |
|
| 918 | 918 | $yearLabel = $this->i18n->dateFormat($monthObj, 'yyyy'); |
| 919 | - $month = (int) $monthObj->format('n'); |
|
| 919 | + $month = (int)$monthObj->format('n'); |
|
| 920 | 920 | $monthLabel = $this->i18n->dateFormat($monthObj, 'yyyy-MM'); |
| 921 | 921 | |
| 922 | 922 | // Fill in labels |
@@ -1060,7 +1060,7 @@ discard block |
||
| 1060 | 1060 | public function countSmallEdits(): int |
| 1061 | 1061 | { |
| 1062 | 1062 | $editSizeData = $this->getEditSizeData(); |
| 1063 | - return isset($editSizeData['small_edits']) ? (int) $editSizeData['small_edits'] : 0; |
|
| 1063 | + return isset($editSizeData['small_edits']) ? (int)$editSizeData['small_edits'] : 0; |
|
| 1064 | 1064 | } |
| 1065 | 1065 | |
| 1066 | 1066 | /** |
@@ -1070,7 +1070,7 @@ discard block |
||
| 1070 | 1070 | public function countLargeEdits(): int |
| 1071 | 1071 | { |
| 1072 | 1072 | $editSizeData = $this->getEditSizeData(); |
| 1073 | - return isset($editSizeData['large_edits']) ? (int) $editSizeData['large_edits'] : 0; |
|
| 1073 | + return isset($editSizeData['large_edits']) ? (int)$editSizeData['large_edits'] : 0; |
|
| 1074 | 1074 | } |
| 1075 | 1075 | |
| 1076 | 1076 | /** |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types = 1); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace App\Repository; |
| 6 | 6 | |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | 'format' => 'json', |
| 197 | 197 | ], $params), |
| 198 | 198 | ])->getBody()->getContents(), true); |
| 199 | - } catch (ServerException|ConnectException $e) { |
|
| 199 | + } catch (ServerException | ConnectException $e) { |
|
| 200 | 200 | throw new BadGatewayException('api-error-wikimedia', ['Wikimedia'], $e); |
| 201 | 201 | } |
| 202 | 202 | } |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | // $tableExtension in order to generate the new table name |
| 219 | 219 | if ($this->isWMF && null !== $tableExtension) { |
| 220 | 220 | $mapped = true; |
| 221 | - $tableName .=('' === $tableExtension ? '' : '_'.$tableExtension); |
|
| 221 | + $tableName .= ('' === $tableExtension ? '' : '_'.$tableExtension); |
|
| 222 | 222 | } elseif ($this->parameterBag->has("app.table.$tableName")) { |
| 223 | 223 | // Use the table specified in the table mapping configuration, if present. |
| 224 | 224 | $mapped = true; |
@@ -230,7 +230,7 @@ discard block |
||
| 230 | 230 | // This is a safeguard in case table mapping isn't properly set up. |
| 231 | 231 | $isLoggingOrRevision = in_array($tableName, ['revision', 'logging', 'archive']); |
| 232 | 232 | if (!$mapped && $isLoggingOrRevision && $this->isWMF) { |
| 233 | - $tableName .="_userindex"; |
|
| 233 | + $tableName .= "_userindex"; |
|
| 234 | 234 | } |
| 235 | 235 | |
| 236 | 236 | // Figure out database name. |
@@ -349,7 +349,7 @@ discard block |
||
| 349 | 349 | $offset = date('YmdHis', $offset); |
| 350 | 350 | $datesConditions .= " AND $tableAlias{$field} <= '$offset'"; |
| 351 | 351 | } elseif (is_int($end)) { |
| 352 | - $end = date('Ymd', $end) . '235959'; |
|
| 352 | + $end = date('Ymd', $end).'235959'; |
|
| 353 | 353 | $datesConditions .= " AND $tableAlias{$field} <= '$end'"; |
| 354 | 354 | } |
| 355 | 355 | |
@@ -295,7 +295,7 @@ discard block |
||
| 295 | 295 | throw new XtoolsHttpException( |
| 296 | 296 | $this->i18n->msg('not-opted-in', [ |
| 297 | 297 | $this->getOptedInPage()->getTitle(), |
| 298 | - $this->i18n->msg('not-opted-in-link') . |
|
| 298 | + $this->i18n->msg('not-opted-in-link'). |
|
| 299 | 299 | ' <https://www.mediawiki.org/wiki/Special:MyLanguage/XTools/Edit_Counter#restricted_stats>', |
| 300 | 300 | $this->i18n->msg('not-opted-in-login'), |
| 301 | 301 | ]), |
@@ -570,7 +570,7 @@ discard block |
||
| 570 | 570 | } |
| 571 | 571 | |
| 572 | 572 | throw new XtoolsHttpException( |
| 573 | - $this->i18n->msg('too-many-edits', [ $user->maxEdits() ]), |
|
| 573 | + $this->i18n->msg('too-many-edits', [$user->maxEdits()]), |
|
| 574 | 574 | $this->generateUrl($this->tooHighEditCountRoute(), $this->params), |
| 575 | 575 | $originalParams, |
| 576 | 576 | $this->isApi, |
@@ -714,7 +714,7 @@ discard block |
||
| 714 | 714 | $params = $this->convertLegacyParams($params); |
| 715 | 715 | |
| 716 | 716 | // Remove blank values. |
| 717 | - return array_filter($params, function ($param) { |
|
| 717 | + return array_filter($params, function($param) { |
|
| 718 | 718 | // 'namespace' or 'username' could be '0'. |
| 719 | 719 | return null !== $param && '' !== $param; |
| 720 | 720 | }); |
@@ -772,7 +772,7 @@ discard block |
||
| 772 | 772 | // Show warnings that the date range was truncated. |
| 773 | 773 | $this->addFlashMessage('warning', 'date-range-too-wide', [$this->maxDays()]); |
| 774 | 774 | |
| 775 | - $startTime = strtotime('-' . $this->maxDays() . ' days', $endTime); |
|
| 775 | + $startTime = strtotime('-'.$this->maxDays().' days', $endTime); |
|
| 776 | 776 | } |
| 777 | 777 | |
| 778 | 778 | return [$startTime, $endTime]; |
@@ -944,7 +944,7 @@ discard block |
||
| 944 | 944 | } |
| 945 | 945 | |
| 946 | 946 | $elapsedTime = round( |
| 947 | - microtime(true) - $_SERVER['REQUEST_TIME_FLOAT'], |
|
| 947 | + microtime(true)-$_SERVER['REQUEST_TIME_FLOAT'], |
|
| 948 | 948 | 3 |
| 949 | 949 | ); |
| 950 | 950 | return array_merge($params, ['elapsed_time' => $elapsedTime]); |
@@ -974,7 +974,7 @@ discard block |
||
| 974 | 974 | public function addFullPageTitlesAndContinue(string $key, array $out, array $data): array |
| 975 | 975 | { |
| 976 | 976 | // Add full_page_title (in addition to the existing page_title and namespace keys). |
| 977 | - $out[$key] = array_map(function ($rev) { |
|
| 977 | + $out[$key] = array_map(function($rev) { |
|
| 978 | 978 | return array_merge([ |
| 979 | 979 | 'full_page_title' => $this->getPageFromNsAndTitle( |
| 980 | 980 | (int)$rev['namespace'], |
@@ -335,7 +335,7 @@ |
||
| 335 | 335 | 'total_editcount' => $this->autoEdits->getEditCount(), |
| 336 | 336 | 'automated_editcount' => $this->autoEdits->getAutomatedCount(), |
| 337 | 337 | ]; |
| 338 | - $ret['nonautomated_editcount'] = $ret['total_editcount'] - $ret['automated_editcount']; |
|
| 338 | + $ret['nonautomated_editcount'] = $ret['total_editcount']-$ret['automated_editcount']; |
|
| 339 | 339 | |
| 340 | 340 | if ($this->getBoolVal('tools')) { |
| 341 | 341 | $tools = $this->autoEdits->getToolCounts(); |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types = 1); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace App\Repository; |
| 6 | 6 | |
@@ -161,10 +161,10 @@ discard block |
||
| 161 | 161 | ])->fetchAllAssociative(); |
| 162 | 162 | |
| 163 | 163 | $logCounts = array_combine( |
| 164 | - array_map(function ($e) { |
|
| 164 | + array_map(function($e) { |
|
| 165 | 165 | return $e['source']; |
| 166 | 166 | }, $results), |
| 167 | - array_map(function ($e) { |
|
| 167 | + array_map(function($e) { |
|
| 168 | 168 | return (int)$e['value']; |
| 169 | 169 | }, $results) |
| 170 | 170 | ); |
@@ -244,10 +244,10 @@ discard block |
||
| 244 | 244 | } |
| 245 | 245 | |
| 246 | 246 | $counts = array_combine( |
| 247 | - array_map(function ($e) { |
|
| 247 | + array_map(function($e) { |
|
| 248 | 248 | return $e['key']; |
| 249 | 249 | }, $results), |
| 250 | - array_map(function ($e) { |
|
| 250 | + array_map(function($e) { |
|
| 251 | 251 | return (int)$e['val']; |
| 252 | 252 | }, $results) |
| 253 | 253 | ); |
@@ -429,9 +429,9 @@ discard block |
||
| 429 | 429 | |
| 430 | 430 | $results = $this->executeProjectsQuery($project, $sql, $params)->fetchAll(); |
| 431 | 431 | |
| 432 | - $namespaceTotals = array_combine(array_map(function ($e) { |
|
| 432 | + $namespaceTotals = array_combine(array_map(function($e) { |
|
| 433 | 433 | return $e['namespace']; |
| 434 | - }, $results), array_map(function ($e) { |
|
| 434 | + }, $results), array_map(function($e) { |
|
| 435 | 435 | return (int)$e['total']; |
| 436 | 436 | }, $results)); |
| 437 | 437 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types = 1); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace App\Repository; |
| 6 | 6 | |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | |
| 174 | 174 | $sql = "SELECT log_action, log_type, log_timestamp AS 'timestamp' |
| 175 | 175 | FROM $loggingTable |
| 176 | - WHERE log_namespace = '" . $page->getNamespace() . "' |
|
| 176 | + WHERE log_namespace = '".$page->getNamespace()."' |
|
| 177 | 177 | AND log_title = :title AND log_timestamp > 1 $datesConditions |
| 178 | 178 | AND log_type IN ('delete', 'move', 'protect', 'stable')"; |
| 179 | 179 | $title = str_replace(' ', '_', $page->getTitle()); |
@@ -358,7 +358,7 @@ discard block |
||
| 358 | 358 | $time2 = time(); |
| 359 | 359 | |
| 360 | 360 | // If it took over 5 seconds, cache the result for 20 minutes. |
| 361 | - if ($time2 - $time1 > 5) { |
|
| 361 | + if ($time2-$time1 > 5) { |
|
| 362 | 362 | $this->setCache($cacheKey, $result, 'PT20M'); |
| 363 | 363 | } |
| 364 | 364 | |
@@ -429,8 +429,8 @@ discard block |
||
| 429 | 429 | } |
| 430 | 430 | |
| 431 | 431 | // Sort the array by count |
| 432 | - uasort($results, function ($a, $b) { |
|
| 433 | - return $b['count'] - $a['count']; |
|
| 432 | + uasort($results, function($a, $b) { |
|
| 433 | + return $b['count']-$a['count']; |
|
| 434 | 434 | }); |
| 435 | 435 | |
| 436 | 436 | return $this->setCache($cacheKey, $results); |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types = 1); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace App\Model; |
| 6 | 6 | |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | [$bytes, $chars, $words] = $this->countCharsAndWords($crawler); |
| 179 | 179 | |
| 180 | 180 | $refContent = []; |
| 181 | - $refs->each(function ($ref) use (&$refContent): void { |
|
| 181 | + $refs->each(function($ref) use (&$refContent): void { |
|
| 182 | 182 | $refContent[] = $ref->text(); |
| 183 | 183 | }); |
| 184 | 184 | $uniqueRefs = count(array_unique($refContent)); |
@@ -213,13 +213,13 @@ discard block |
||
| 213 | 213 | '[typeof~="mw:Extension/templatestyles"]', |
| 214 | 214 | '[typeof~="mw:Extension/math"]', |
| 215 | 215 | '[typeof~="mw:Extension/ref"]', |
| 216 | - ]))->each(function (Crawler $subCrawler) { |
|
| 216 | + ]))->each(function(Crawler $subCrawler) { |
|
| 217 | 217 | foreach ($subCrawler as $subNode) { |
| 218 | 218 | $subNode->parentNode->removeChild($subNode); |
| 219 | 219 | } |
| 220 | 220 | }); |
| 221 | 221 | |
| 222 | - $paragraphs->each(function ($node) use (&$totalBytes, &$totalChars, &$totalWords): void { |
|
| 222 | + $paragraphs->each(function($node) use (&$totalBytes, &$totalChars, &$totalWords): void { |
|
| 223 | 223 | /** @var Crawler $node */ |
| 224 | 224 | $text = $node->text(); |
| 225 | 225 | $totalBytes += strlen($text); |
@@ -281,7 +281,7 @@ discard block |
||
| 281 | 281 | $data = [ |
| 282 | 282 | 'project' => $project->getDomain(), |
| 283 | 283 | 'page' => $page->getTitle(), |
| 284 | - 'watchers' => (int) $page->getWatchers(), |
|
| 284 | + 'watchers' => (int)$page->getWatchers(), |
|
| 285 | 285 | 'pageviews' => $page->getLatestPageviews(), |
| 286 | 286 | 'pageviews_offset' => self::PAGEVIEWS_OFFSET, |
| 287 | 287 | ]; |
@@ -304,7 +304,7 @@ discard block |
||
| 304 | 304 | if ($info) { |
| 305 | 305 | $creationDateTime = DateTime::createFromFormat('YmdHis', $info['created_at']); |
| 306 | 306 | $modifiedDateTime = DateTime::createFromFormat('YmdHis', $info['modified_at']); |
| 307 | - $secsSinceLastEdit = (new DateTime)->getTimestamp() - $modifiedDateTime->getTimestamp(); |
|
| 307 | + $secsSinceLastEdit = (new DateTime)->getTimestamp()-$modifiedDateTime->getTimestamp(); |
|
| 308 | 308 | |
| 309 | 309 | // Some wikis (such foundation.wikimedia.org) may be missing the creation date. |
| 310 | 310 | $creationDateTime = false === $creationDateTime |
@@ -316,17 +316,17 @@ discard block |
||
| 316 | 316 | ->getAssessment($page); |
| 317 | 317 | |
| 318 | 318 | $data = array_merge($data, [ |
| 319 | - 'revisions' => (int) $info['num_edits'], |
|
| 320 | - 'editors' => (int) $info['num_editors'], |
|
| 321 | - 'ip_edits' => (int) $info['ip_edits'], |
|
| 322 | - 'minor_edits' => (int) $info['minor_edits'], |
|
| 319 | + 'revisions' => (int)$info['num_edits'], |
|
| 320 | + 'editors' => (int)$info['num_editors'], |
|
| 321 | + 'ip_edits' => (int)$info['ip_edits'], |
|
| 322 | + 'minor_edits' => (int)$info['minor_edits'], |
|
| 323 | 323 | 'author' => $info['author'], |
| 324 | - 'author_editcount' => null === $info['author_editcount'] ? null : (int) $info['author_editcount'], |
|
| 324 | + 'author_editcount' => null === $info['author_editcount'] ? null : (int)$info['author_editcount'], |
|
| 325 | 325 | 'created_at' => $creationDateTime, |
| 326 | 326 | 'created_rev_id' => $info['created_rev_id'], |
| 327 | 327 | 'modified_at' => $modifiedDateTime->format('Y-m-d H:i'), |
| 328 | 328 | 'secs_since_last_edit' => $secsSinceLastEdit, |
| 329 | - 'last_edit_id' => (int) $info['modified_rev_id'], |
|
| 329 | + 'last_edit_id' => (int)$info['modified_rev_id'], |
|
| 330 | 330 | 'assessment' => $assessment, |
| 331 | 331 | ]); |
| 332 | 332 | } |
@@ -476,8 +476,8 @@ discard block |
||
| 476 | 476 | } |
| 477 | 477 | |
| 478 | 478 | // Sort by edit count. |
| 479 | - uasort($this->bots, function ($a, $b) { |
|
| 480 | - return $b['count'] - $a['count']; |
|
| 479 | + uasort($this->bots, function($a, $b) { |
|
| 480 | + return $b['count']-$a['count']; |
|
| 481 | 481 | }); |
| 482 | 482 | |
| 483 | 483 | return $this->bots; |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types = 1); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace App\Model; |
| 6 | 6 | |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | { |
| 164 | 164 | $firstDateTime = $this->topEdits[0]->getTimestamp(); |
| 165 | 165 | $lastDateTime = end($this->topEdits)->getTimestamp(); |
| 166 | - $secs = $firstDateTime->getTimestamp() - $lastDateTime->getTimestamp(); |
|
| 166 | + $secs = $firstDateTime->getTimestamp()-$lastDateTime->getTimestamp(); |
|
| 167 | 167 | $days = $secs / (60 * 60 * 24); |
| 168 | 168 | return $days / count($this->topEdits); |
| 169 | 169 | } |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | if ($format) { |
| 266 | 266 | return $this->formatTopEditsPage($revs); |
| 267 | 267 | } else { |
| 268 | - return array_map(function ($rev) { |
|
| 268 | + return array_map(function($rev) { |
|
| 269 | 269 | $rev['minor'] = (bool)$rev['minor']; |
| 270 | 270 | $rev['reverted'] = (bool)$rev['reverted']; |
| 271 | 271 | return $rev; |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types = 1); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace App\Repository; |
| 6 | 6 | |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | $hasPageAssessments = $this->isWMF && $project->hasPageAssessments($namespace); |
| 115 | 115 | $paTable = $project->getTableName('page_assessments'); |
| 116 | 116 | $paSelect = $hasPageAssessments |
| 117 | - ? ", ( |
|
| 117 | + ? ", ( |
|
| 118 | 118 | SELECT pa_class |
| 119 | 119 | FROM $paTable |
| 120 | 120 | WHERE pa_page_id = page_id |
@@ -228,7 +228,7 @@ discard block |
||
| 228 | 228 | $hasPageAssessments = $this->isWMF && $project->hasPageAssessments(); |
| 229 | 229 | $pageAssessmentsTable = $this->getTableName($project->getDatabaseName(), 'page_assessments'); |
| 230 | 230 | $paSelect = $hasPageAssessments |
| 231 | - ? ", ( |
|
| 231 | + ? ", ( |
|
| 232 | 232 | SELECT pa_class |
| 233 | 233 | FROM $pageAssessmentsTable |
| 234 | 234 | WHERE pa_page_id = e.page_id |