@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | $actions = is_array($actionsQuery) ? $actionsQuery : explode('|', $actionsQuery); |
143 | 143 | |
144 | 144 | // Filter out any invalid section IDs. |
145 | - $actions = array_filter($actions, function ($action) use ($group) { |
|
145 | + $actions = array_filter($actions, function($action) use ($group) { |
|
146 | 146 | return in_array($action, $this->getActionNames($group)); |
147 | 147 | }); |
148 | 148 | |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | if (0 === preg_match('/\/api\/project\/(admin|patroller|steward)_groups/', $this->request->getRequestUri())) { |
248 | 248 | $this->addFlash( |
249 | 249 | 'warning', |
250 | - 'This API endpoint will soon be removed. Use /api/admin_groups, /api/patroller_groups ' . |
|
250 | + 'This API endpoint will soon be removed. Use /api/admin_groups, /api/patroller_groups '. |
|
251 | 251 | 'and /api/steward_groups instead. See https://w.wiki/6sMx for more information.' |
252 | 252 | ); |
253 | 253 | } |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | if ('/api/articleinfo' === substr($this->request->getRequestUri(), 0, 16)) { |
219 | 219 | $this->addFlash( |
220 | 220 | 'warning', |
221 | - 'This endpoint will soon be removed. Use /api/page/articleinfo instead. ' . |
|
221 | + 'This endpoint will soon be removed. Use /api/page/articleinfo instead. '. |
|
222 | 222 | 'See https://w.wiki/6sMx for more information.' |
223 | 223 | ); |
224 | 224 | } |
@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | $responseCode = Response::HTTP_OK; |
288 | 288 | $this->recordApiUsage('page/prose'); |
289 | 289 | $this->setupArticleInfo($articleInfoRepo, $autoEditsHelper); |
290 | - $this->addFlash('info', 'The algorithm used by this API has recently changed. ' . |
|
290 | + $this->addFlash('info', 'The algorithm used by this API has recently changed. '. |
|
291 | 291 | 'See https://www.mediawiki.org/wiki/XTools/Page_History#Prose for details.'); |
292 | 292 | $ret = $this->articleInfo->getProseStats(); |
293 | 293 | if (null === $ret) { |
@@ -315,7 +315,7 @@ discard block |
||
315 | 315 | |
316 | 316 | $this->addFlash( |
317 | 317 | 'warning', |
318 | - 'This API endpoint will soon have results nested under the \'pages\' property. ' . |
|
318 | + 'This API endpoint will soon have results nested under the \'pages\' property. '. |
|
319 | 319 | 'See https://w.wiki/6sMx for more information.' |
320 | 320 | ); |
321 | 321 |
@@ -244,13 +244,13 @@ discard block |
||
244 | 244 | if ('/api/user/' === substr($this->request->getRequestUri(), 0, 10)) { |
245 | 245 | $this->addFlash( |
246 | 246 | 'warning', |
247 | - 'This endpoint will soon be removed. Use /api/project/automated_tools instead. ' . |
|
247 | + 'This endpoint will soon be removed. Use /api/project/automated_tools instead. '. |
|
248 | 248 | 'See https://w.wiki/6sMx for more information.' |
249 | 249 | ); |
250 | 250 | } |
251 | 251 | $this->addFlash( |
252 | 252 | 'warning', |
253 | - 'This API endpoint will soon have results nested under the \'tools\' property. ' . |
|
253 | + 'This API endpoint will soon have results nested under the \'tools\' property. '. |
|
254 | 254 | 'See https://w.wiki/6sMx for more information.' |
255 | 255 | ); |
256 | 256 | return $this->getFormattedApiResponse($autoEditsRepo->getTools($this->project)); |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | 'total_editcount' => $this->autoEdits->getEditCount(), |
287 | 287 | 'automated_editcount' => $this->autoEdits->getAutomatedCount(), |
288 | 288 | ]; |
289 | - $ret['nonautomated_editcount'] = $ret['total_editcount'] - $ret['automated_editcount']; |
|
289 | + $ret['nonautomated_editcount'] = $ret['total_editcount']-$ret['automated_editcount']; |
|
290 | 290 | |
291 | 291 | if (isset($this->params['tools'])) { |
292 | 292 | $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\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; |