Completed
Pull Request — master (#107)
by Matthew
06:24
created
src/AppBundle/Controller/ArticleInfoController.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -81,9 +81,9 @@  discard block
 block discarded – undo
81 81
         $article = $request->query->get('article');
82 82
 
83 83
         if ($projectQuery != '' && $article != '') {
84
-            return $this->redirectToRoute('ArticleInfoResult', [ 'project'=>$projectQuery, 'article' => $article ]);
84
+            return $this->redirectToRoute('ArticleInfoResult', ['project'=>$projectQuery, 'article' => $article]);
85 85
         } elseif ($article != '') {
86
-            return $this->redirectToRoute('ArticleInfoProject', [ 'project'=>$projectQuery ]);
86
+            return $this->redirectToRoute('ArticleInfoProject', ['project'=>$projectQuery]);
87 87
         }
88 88
 
89 89
         if ($projectQuery == '') {
@@ -121,10 +121,10 @@  discard block
 block discarded – undo
121 121
             $rendered = str_replace('"', '\"', trim($rendered));
122 122
 
123 123
             // Uglify temporary file.
124
-            $tmpFile = sys_get_temp_dir() . '/xtools_articleinfo_gadget.js';
124
+            $tmpFile = sys_get_temp_dir().'/xtools_articleinfo_gadget.js';
125 125
             $script = "echo \"$rendered\" | tee $tmpFile >/dev/null && ";
126
-            $script .= $this->get('kernel')->getRootDir() .
127
-                "/Resources/node_modules/uglify-es/bin/uglifyjs $tmpFile --mangle " .
126
+            $script .= $this->get('kernel')->getRootDir().
127
+                "/Resources/node_modules/uglify-es/bin/uglifyjs $tmpFile --mangle ".
128 128
                 "&& rm $tmpFile >/dev/null";
129 129
             $process = new Process($script);
130 130
             $process->run();
@@ -143,10 +143,10 @@  discard block
 block discarded – undo
143 143
             $rendered = str_replace('\"', '"', trim($rendered));
144 144
 
145 145
             // Add comment after uglifying since it removes comments.
146
-            $rendered = "/**\n * This code was automatically generated and should not " .
147
-                "be manually edited.\n * For updates, please copy and paste from " .
148
-                $this->generateUrl('ArticleInfoGadget', ['uglify' => 1], UrlGeneratorInterface::ABSOLUTE_URL) .
149
-                "\n * Released under GPL v3 license.\n */\n" . $rendered;
146
+            $rendered = "/**\n * This code was automatically generated and should not ".
147
+                "be manually edited.\n * For updates, please copy and paste from ".
148
+                $this->generateUrl('ArticleInfoGadget', ['uglify' => 1], UrlGeneratorInterface::ABSOLUTE_URL).
149
+                "\n * Released under GPL v3 license.\n */\n".$rendered;
150 150
         }
151 151
 
152 152
         $response = new \Symfony\Component\HttpFoundation\Response($rendered);
Please login to merge, or discard this patch.
src/Xtools/Page.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         $info = $this->getPageInfo();
82 82
         $title = isset($info['title']) ? $info['title'] : $this->unnormalizedPageName;
83 83
         $nsName = $this->getNamespaceName();
84
-        return str_replace($nsName . ':', '', $title);
84
+        return str_replace($nsName.':', '', $title);
85 85
     }
86 86
 
87 87
     /**
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
     {
218 218
         // If a user is given, we will not cache the result via instance variable.
219 219
         if ($user !== null) {
220
-            return (int) $this->getRepository()->getNumRevisions($this, $user);
220
+            return (int)$this->getRepository()->getNumRevisions($this, $user);
221 221
         }
222 222
 
223 223
         // Return cached value, if present.
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
             $this->numRevisions = count($this->revisions);
231 231
         } else {
232 232
             // Otherwise do a COUNT in the event fetching all revisions is not desired.
233
-            $this->numRevisions = (int) $this->getRepository()->getNumRevisions($this);
233
+            $this->numRevisions = (int)$this->getRepository()->getNumRevisions($this);
234 234
         }
235 235
 
236 236
         return $this->numRevisions;
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
     {
261 261
         $content = $this->getRepository()->getPagesWikitext(
262 262
             $this->getProject(),
263
-            [ $this->getTitle() ]
263
+            [$this->getTitle()]
264 264
         );
265 265
 
266 266
         return isset($content[$this->getTitle()])
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
 
418 418
         $wikidataInfo = $this->getRepository()->getWikidataInfo($this);
419 419
 
420
-        $terms = array_map(function ($entry) {
420
+        $terms = array_map(function($entry) {
421 421
             return $entry['term'];
422 422
         }, $wikidataInfo);
423 423
 
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
                 'prio' => 2,
429 429
                 'name' => 'Wikidata',
430 430
                 'notice' => "Label for language <em>$lang</em> is missing", // FIXME: i18n
431
-                'explanation' => "See: <a target='_blank' " .
431
+                'explanation' => "See: <a target='_blank' ".
432 432
                     "href='//www.wikidata.org/wiki/Help:Label'>Help:Label</a>",
433 433
             ];
434 434
         }
@@ -438,7 +438,7 @@  discard block
 block discarded – undo
438 438
                 'prio' => 3,
439 439
                 'name' => 'Wikidata',
440 440
                 'notice' => "Description for language <em>$lang</em> is missing", // FIXME: i18n
441
-                'explanation' => "See: <a target='_blank' " .
441
+                'explanation' => "See: <a target='_blank' ".
442 442
                     "href='//www.wikidata.org/wiki/Help:Description'>Help:Description</a>",
443 443
             ];
444 444
         }
@@ -517,8 +517,8 @@  discard block
 block discarded – undo
517 517
             return 0;
518 518
         }
519 519
 
520
-        return array_sum(array_map(function ($item) {
521
-            return (int) $item['views'];
520
+        return array_sum(array_map(function($item) {
521
+            return (int)$item['views'];
522 522
         }, $pageviews['items']));
523 523
     }
524 524
 
Please login to merge, or discard this patch.
src/Xtools/ArticleInfo.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
     public function getMaxRevisions()
160 160
     {
161 161
         if (!isset($this->maxRevisions)) {
162
-            $this->maxRevisions = (int) $this->container->getParameter('app.max_page_revisions');
162
+            $this->maxRevisions = (int)$this->container->getParameter('app.max_page_revisions');
163 163
         }
164 164
         return $this->maxRevisions;
165 165
     }
@@ -638,7 +638,7 @@  discard block
 block discarded – undo
638 638
 
639 639
             if ($revCount === 0) {
640 640
                 $this->firstEdit = $edit;
641
-                $firstEditMonth = mktime(0, 0, 0, (int) $this->firstEdit->getMonth(), 1, $this->firstEdit->getYear());
641
+                $firstEditMonth = mktime(0, 0, 0, (int)$this->firstEdit->getMonth(), 1, $this->firstEdit->getYear());
642 642
             }
643 643
 
644 644
             $username = $edit->getUser()->getUsername();
@@ -824,7 +824,7 @@  discard block
 block discarded – undo
824 824
         $userGroupsTable = $this->getProject()->getTableName('user_groups');
825 825
         $userFromerGroupsTable = $this->getProject()->getTableName('user_former_groups');
826 826
         $sql = "SELECT COUNT(rev_user_text) AS count, rev_user_text AS username, ug_group AS current
827
-                FROM " . $this->getProject()->getTableName('revision') . "
827
+                FROM " . $this->getProject()->getTableName('revision')."
828 828
                 LEFT JOIN $userGroupsTable ON rev_user = ug_user
829 829
                 LEFT JOIN $userFromerGroupsTable ON rev_user = ufg_user
830 830
                 WHERE rev_page = :pageId AND (ug_group = 'bot' OR ufg_group = 'bot')
@@ -839,14 +839,14 @@  discard block
 block discarded – undo
839 839
         $sum = 0;
840 840
         while ($bot = $resultQuery->fetch()) {
841 841
             $bots[$bot['username']] = [
842
-                'count' => (int) $bot['count'],
842
+                'count' => (int)$bot['count'],
843 843
                 'current' => $bot['current'] === 'bot'
844 844
             ];
845 845
             $sum += $bot['count'];
846 846
         }
847 847
 
848
-        uasort($bots, function ($a, $b) {
849
-            return $b['count'] - $a['count'];
848
+        uasort($bots, function($a, $b) {
849
+            return $b['count']-$a['count'];
850 850
         });
851 851
 
852 852
         $this->botRevisionCount = $sum;
@@ -869,7 +869,7 @@  discard block
 block discarded – undo
869 869
         $title = str_replace(' ', '_', $this->page->getTitle());
870 870
         $sql = "SELECT log_action, log_type, log_timestamp AS timestamp
871 871
                 FROM $loggingTable
872
-                WHERE log_namespace = '" . $this->page->getNamespace() . "'
872
+                WHERE log_namespace = '".$this->page->getNamespace()."'
873 873
                 AND log_title = :title AND log_timestamp > 1
874 874
                 AND log_type IN ('delete', 'move', 'protect', 'stable')";
875 875
         $resultQuery = $this->conn->prepare($sql);
@@ -944,7 +944,7 @@  discard block
 block discarded – undo
944 944
 
945 945
             if ($info['all'] > 1) {
946 946
                 // Number of seconds/days between first and last edit
947
-                $secs = $info['last']->getTimestamp() - $info['first']->getTimestamp();
947
+                $secs = $info['last']->getTimestamp()-$info['first']->getTimestamp();
948 948
                 $days = $secs / (60 * 60 * 24);
949 949
 
950 950
                 // Average time between edits (in days)
@@ -963,7 +963,7 @@  discard block
 block discarded – undo
963 963
 
964 964
         // First sort editors array by the amount of text they added
965 965
         $topTenEditorsByAdded = $this->editors;
966
-        uasort($topTenEditorsByAdded, function ($a, $b) {
966
+        uasort($topTenEditorsByAdded, function($a, $b) {
967 967
             if ($a['added'] === $b['added']) {
968 968
                 return 0;
969 969
             }
@@ -972,7 +972,7 @@  discard block
 block discarded – undo
972 972
 
973 973
         // Then build a new array of top 10 editors by added text,
974 974
         //   in the data structure needed for the chart
975
-        $this->topTenEditorsByAdded = array_map(function ($editor) {
975
+        $this->topTenEditorsByAdded = array_map(function($editor) {
976 976
             $added = $this->editors[$editor]['added'];
977 977
             return [
978 978
                 'label' => $editor,
Please login to merge, or discard this patch.
src/Xtools/PagesRepository.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
         // supply as the OFFSET.
149 149
         $limitClause = '';
150 150
         if (intval($limit) > 0 && isset($numRevisions)) {
151
-            $offset = $numRevisions - $limit;
151
+            $offset = $numRevisions-$limit;
152 152
             $limitClause = "LIMIT $offset, $limit";
153 153
         }
154 154
 
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
 
379 379
         $wikidataId = ltrim($page->getWikidataId(), 'Q');
380 380
 
381
-        $sql = "SELECT " . ($count ? 'COUNT(*) AS count' : '*') . "
381
+        $sql = "SELECT ".($count ? 'COUNT(*) AS count' : '*')."
382 382
                 FROM wikidatawiki_p.wb_items_per_site
383 383
                 WHERE ips_item_id = :wikidataId";
384 384
 
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
 
389 389
         $result = $resultQuery->fetchAll();
390 390
 
391
-        return $count ? (int) $result[0]['count'] : $result;
391
+        return $count ? (int)$result[0]['count'] : $result;
392 392
     }
393 393
 
394 394
     /**
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
 
429 429
         // Transform to associative array by 'type'
430 430
         foreach ($res as $row) {
431
-            $data[$row['type'] . '_count'] = $row['value'];
431
+            $data[$row['type'].'_count'] = $row['value'];
432 432
         }
433 433
 
434 434
         return $data;
@@ -466,7 +466,7 @@  discard block
 block discarded – undo
466 466
 
467 467
         $project = $page->getProject()->getDomain();
468 468
 
469
-        $url = 'https://wikimedia.org/api/rest_v1/metrics/pageviews/per-article/' .
469
+        $url = 'https://wikimedia.org/api/rest_v1/metrics/pageviews/per-article/'.
470 470
             "$project/all-access/user/$title/daily/$start/$end";
471 471
 
472 472
         $res = $client->request('GET', $url);
Please login to merge, or discard this patch.
src/AppBundle/Controller/EditCounterController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@
 block discarded – undo
136 136
         $isSubRequest = $this->container->get('request_stack')->getParentRequest() !== null;
137 137
 
138 138
         return $this->render('editCounter/result.html.twig', [
139
-            'xtTitle' => $this->user->getUsername() . ' - ' . $this->project->getTitle(),
139
+            'xtTitle' => $this->user->getUsername().' - '.$this->project->getTitle(),
140 140
             'xtPage' => 'ec',
141 141
             'base_dir' => realpath($this->getParameter('kernel.root_dir').'/..'),
142 142
             'is_sub_request' => $isSubRequest,
Please login to merge, or discard this patch.
src/AppBundle/Controller/AutomatedEditsController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
             'xtSubtitle' => 'tool-autoedits-desc',
87 87
             'xtPage' => 'autoedits',
88 88
             'project' => $project,
89
-            'namespace' => (int) $namespace,
89
+            'namespace' => (int)$namespace,
90 90
             'start' => $startDate,
91 91
             'end' => $endDate,
92 92
         ]);
@@ -157,8 +157,8 @@  discard block
 block discarded – undo
157 157
         // Get individual counts of how many times each tool was used.
158 158
         // This also includes a wikilink to the tool.
159 159
         $toolCounts = $user->getAutomatedCounts($projectData, $namespace, $start, $end);
160
-        $toolsTotal = array_reduce($toolCounts, function ($a, $b) {
161
-            return $a + $b['count'];
160
+        $toolsTotal = array_reduce($toolCounts, function($a, $b) {
161
+            return $a+$b['count'];
162 162
         });
163 163
 
164 164
         // Query to get combined (semi)automated using for all edits
Please login to merge, or discard this patch.
src/AppBundle/Twig/Extension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         }
58 58
 
59 59
         // Find the path, and complain if English doesn't exist.
60
-        $path = $this->container->getParameter('kernel.root_dir') . '/../i18n';
60
+        $path = $this->container->getParameter('kernel.root_dir').'/../i18n';
61 61
         if (!file_exists("$path/en.json")) {
62 62
             throw new Exception("Language directory doesn't exist: $path");
63 63
         }
Please login to merge, or discard this patch.
src/AppBundle/Twig/AppExtension.php 1 patch
Spacing   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -44,32 +44,32 @@  discard block
 block discarded – undo
44 44
     {
45 45
         $options = ['is_safe' => ['html']];
46 46
         return [
47
-            new \Twig_SimpleFunction('request_time', [ $this, 'requestTime' ], $options),
48
-            new \Twig_SimpleFunction('memory_usage', [ $this, 'requestMemory' ], $options),
49
-            new \Twig_SimpleFunction('year', [ $this, 'generateYear' ], $options),
50
-            new \Twig_SimpleFunction('msgPrintExists', [ $this, 'intuitionMessagePrintExists' ], $options),
51
-            new \Twig_SimpleFunction('msgExists', [ $this, 'intuitionMessageExists' ], $options),
52
-            new \Twig_SimpleFunction('msg', [ $this, 'intuitionMessage' ], $options),
53
-            new \Twig_SimpleFunction('lang', [ $this, 'getLang' ], $options),
54
-            new \Twig_SimpleFunction('langName', [ $this, 'getLangName' ], $options),
55
-            new \Twig_SimpleFunction('allLangs', [ $this, 'getAllLangs' ]),
56
-            new \Twig_SimpleFunction('isRTL', [ $this, 'intuitionIsRTL' ]),
57
-            new \Twig_SimpleFunction('isRTLLang', [ $this, 'intuitionIsRTLLang' ]),
58
-            new \Twig_SimpleFunction('shortHash', [ $this, 'gitShortHash' ]),
59
-            new \Twig_SimpleFunction('hash', [ $this, 'gitHash' ]),
60
-            new \Twig_SimpleFunction('releaseDate', [ $this, 'gitDate' ]),
61
-            new \Twig_SimpleFunction('enabled', [ $this, 'tabEnabled' ]),
62
-            new \Twig_SimpleFunction('tools', [ $this, 'allTools' ]),
63
-            new \Twig_SimpleFunction('color', [ $this, 'getColorList' ]),
64
-            new \Twig_SimpleFunction('chartColor', [ $this, 'chartColor' ]),
65
-            new \Twig_SimpleFunction('isSingleWiki', [ $this, 'isSingleWiki' ]),
66
-            new \Twig_SimpleFunction('getReplagThreshold', [ $this, 'getReplagThreshold' ]),
67
-            new \Twig_SimpleFunction('loadStylesheetsFromCDN', [ $this, 'loadStylesheetsFromCDN' ]),
68
-            new \Twig_SimpleFunction('isWMFLabs', [ $this, 'isWMFLabs' ]),
69
-            new \Twig_SimpleFunction('replag', [ $this, 'replag' ]),
70
-            new \Twig_SimpleFunction('link', [ $this, 'link' ]),
71
-            new \Twig_SimpleFunction('quote', [ $this, 'quote' ]),
72
-            new \Twig_SimpleFunction('bugReportURL', [ $this, 'bugReportURL' ]),
47
+            new \Twig_SimpleFunction('request_time', [$this, 'requestTime'], $options),
48
+            new \Twig_SimpleFunction('memory_usage', [$this, 'requestMemory'], $options),
49
+            new \Twig_SimpleFunction('year', [$this, 'generateYear'], $options),
50
+            new \Twig_SimpleFunction('msgPrintExists', [$this, 'intuitionMessagePrintExists'], $options),
51
+            new \Twig_SimpleFunction('msgExists', [$this, 'intuitionMessageExists'], $options),
52
+            new \Twig_SimpleFunction('msg', [$this, 'intuitionMessage'], $options),
53
+            new \Twig_SimpleFunction('lang', [$this, 'getLang'], $options),
54
+            new \Twig_SimpleFunction('langName', [$this, 'getLangName'], $options),
55
+            new \Twig_SimpleFunction('allLangs', [$this, 'getAllLangs']),
56
+            new \Twig_SimpleFunction('isRTL', [$this, 'intuitionIsRTL']),
57
+            new \Twig_SimpleFunction('isRTLLang', [$this, 'intuitionIsRTLLang']),
58
+            new \Twig_SimpleFunction('shortHash', [$this, 'gitShortHash']),
59
+            new \Twig_SimpleFunction('hash', [$this, 'gitHash']),
60
+            new \Twig_SimpleFunction('releaseDate', [$this, 'gitDate']),
61
+            new \Twig_SimpleFunction('enabled', [$this, 'tabEnabled']),
62
+            new \Twig_SimpleFunction('tools', [$this, 'allTools']),
63
+            new \Twig_SimpleFunction('color', [$this, 'getColorList']),
64
+            new \Twig_SimpleFunction('chartColor', [$this, 'chartColor']),
65
+            new \Twig_SimpleFunction('isSingleWiki', [$this, 'isSingleWiki']),
66
+            new \Twig_SimpleFunction('getReplagThreshold', [$this, 'getReplagThreshold']),
67
+            new \Twig_SimpleFunction('loadStylesheetsFromCDN', [$this, 'loadStylesheetsFromCDN']),
68
+            new \Twig_SimpleFunction('isWMFLabs', [$this, 'isWMFLabs']),
69
+            new \Twig_SimpleFunction('replag', [$this, 'replag']),
70
+            new \Twig_SimpleFunction('link', [$this, 'link']),
71
+            new \Twig_SimpleFunction('quote', [$this, 'quote']),
72
+            new \Twig_SimpleFunction('bugReportURL', [$this, 'bugReportURL']),
73 73
             new \Twig_SimpleFunction('logged_in_user', [$this, 'functionLoggedInUser']),
74 74
             new \Twig_SimpleFunction('isUserAnon', [$this, 'isUserAnon']),
75 75
             new \Twig_SimpleFunction('nsName', [$this, 'nsName']),
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
     public function requestTime()
86 86
     {
87 87
         if (!isset($this->requestTime)) {
88
-            $this->requestTime = microtime(true) - $this->getCurrentRequest()->server->get('REQUEST_TIME_FLOAT');
88
+            $this->requestTime = microtime(true)-$this->getCurrentRequest()->server->get('REQUEST_TIME_FLOAT');
89 89
         }
90 90
 
91 91
         return $this->requestTime;
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      */
159 159
     public function intuitionMessage($message = "", $vars = [])
160 160
     {
161
-        return $this->getIntuition()->msg($message, [ "domain" => "xtools", "variables" => $vars ]);
161
+        return $this->getIntuition()->msg($message, ["domain" => "xtools", "variables" => $vars]);
162 162
     }
163 163
 
164 164
     /**
@@ -187,10 +187,10 @@  discard block
 block discarded – undo
187 187
      */
188 188
     public function getAllLangs()
189 189
     {
190
-        $messageFiles = glob($this->container->getParameter("kernel.root_dir") . '/../i18n/*.json');
190
+        $messageFiles = glob($this->container->getParameter("kernel.root_dir").'/../i18n/*.json');
191 191
 
192 192
         $languages = array_values(array_unique(array_map(
193
-            function ($filename) {
193
+            function($filename) {
194 194
                 return basename($filename, '.json');
195 195
             },
196 196
             $messageFiles
@@ -537,9 +537,9 @@  discard block
 block discarded – undo
537 537
     public function getFilters()
538 538
     {
539 539
         return [
540
-            new \Twig_SimpleFilter('capitalize_first', [ $this, 'capitalizeFirst' ]),
541
-            new \Twig_SimpleFilter('percent_format', [ $this, 'percentFormat' ]),
542
-            new \Twig_SimpleFilter('diff_format', [ $this, 'diffFormat' ], [ 'is_safe' => [ 'html' ] ]),
540
+            new \Twig_SimpleFilter('capitalize_first', [$this, 'capitalizeFirst']),
541
+            new \Twig_SimpleFilter('percent_format', [$this, 'percentFormat']),
542
+            new \Twig_SimpleFilter('diff_format', [$this, 'diffFormat'], ['is_safe' => ['html']]),
543 543
             new \Twig_SimpleFilter('num_format', [$this, 'numberFormat']),
544 544
             new \Twig_SimpleFilter('date_format', [$this, 'dateFormat']),
545 545
         ];
@@ -613,10 +613,10 @@  discard block
 block discarded – undo
613 613
         if (!$denominator) {
614 614
             $quotient = $numerator;
615 615
         } else {
616
-            $quotient = ( $numerator / $denominator ) * 100;
616
+            $quotient = ($numerator / $denominator) * 100;
617 617
         }
618 618
 
619
-        return $this->numberFormat($quotient, $precision) . '%';
619
+        return $this->numberFormat($quotient, $precision).'%';
620 620
     }
621 621
 
622 622
     /**
@@ -691,20 +691,20 @@  discard block
 block discarded – undo
691 691
 
692 692
         if ($seconds >= 86400) {
693 693
             // Over a day
694
-            $val = (int) floor($seconds / 86400);
694
+            $val = (int)floor($seconds / 86400);
695 695
             $key = 'days';
696 696
         } elseif ($seconds >= 3600) {
697 697
             // Over an hour, less than a day
698
-            $val = (int) floor($seconds / 3600);
698
+            $val = (int)floor($seconds / 3600);
699 699
             $key = 'hours';
700 700
         } elseif ($seconds >= 60) {
701 701
             // Over a minute, less than an hour
702
-            $val = (int) floor($seconds / 60);
702
+            $val = (int)floor($seconds / 60);
703 703
             $key = 'minutes';
704 704
         }
705 705
 
706 706
         if ($translate) {
707
-            return $this->numberFormat($val) . ' ' . $this->intuitionMessage("num-$key", [$val]);
707
+            return $this->numberFormat($val).' '.$this->intuitionMessage("num-$key", [$val]);
708 708
         } else {
709 709
             return [$this->numberFormat($val), "num-$key"];
710 710
         }
Please login to merge, or discard this patch.
src/Xtools/User.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
             return $this->editCounts[$domain];
93 93
         }
94 94
 
95
-        $this->editCounts[$domain] = (int) $this->getRepository()->getEditCount(
95
+        $this->editCounts[$domain] = (int)$this->getRepository()->getEditCount(
96 96
             $project->getDatabaseName(),
97 97
             $this->getUsername()
98 98
         );
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      */
159 159
     public function isAnon()
160 160
     {
161
-        return (bool) filter_var($this->username, FILTER_VALIDATE_IP);
161
+        return (bool)filter_var($this->username, FILTER_VALIDATE_IP);
162 162
     }
163 163
 
164 164
     /**
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
      */
221 221
     public function countEdits(Project $project, $namespace = 'all', $start = '', $end = '')
222 222
     {
223
-        return (int) $this->getRepository()->countEdits($project, $this, $namespace, $start, $end);
223
+        return (int)$this->getRepository()->countEdits($project, $this, $namespace, $start, $end);
224 224
     }
225 225
 
226 226
     /**
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
      */
234 234
     public function countAutomatedEdits(Project $project, $namespace = 'all', $start = '', $end = '')
235 235
     {
236
-        return (int) $this->getRepository()->countAutomatedEdits($project, $this, $namespace, $start, $end);
236
+        return (int)$this->getRepository()->countAutomatedEdits($project, $this, $namespace, $start, $end);
237 237
     }
238 238
 
239 239
     /**
@@ -265,12 +265,12 @@  discard block
 block discarded – undo
265 265
 
266 266
         $namespaces = $project->getNamespaces();
267 267
 
268
-        return array_map(function ($rev) use ($namespaces) {
268
+        return array_map(function($rev) use ($namespaces) {
269 269
             $pageTitle = $rev['page_title'];
270 270
             $fullPageTitle = '';
271 271
 
272 272
             if ($rev['page_namespace'] !== '0') {
273
-                $fullPageTitle = $namespaces[$rev['page_namespace']] . ":$pageTitle";
273
+                $fullPageTitle = $namespaces[$rev['page_namespace']].":$pageTitle";
274 274
             } else {
275 275
                 $fullPageTitle = $pageTitle;
276 276
             }
@@ -278,12 +278,12 @@  discard block
 block discarded – undo
278 278
             return [
279 279
                 'full_page_title' => $fullPageTitle,
280 280
                 'page_title' => $pageTitle,
281
-                'page_namespace' => (int) $rev['page_namespace'],
282
-                'rev_id' => (int) $rev['rev_id'],
281
+                'page_namespace' => (int)$rev['page_namespace'],
282
+                'rev_id' => (int)$rev['rev_id'],
283 283
                 'timestamp' => DateTime::createFromFormat('YmdHis', $rev['timestamp']),
284
-                'minor' => (bool) $rev['minor'],
285
-                'length' => (int) $rev['length'],
286
-                'length_change' => (int) $rev['length_change'],
284
+                'minor' => (bool)$rev['minor'],
285
+                'length' => (int)$rev['length'],
286
+                'length_change' => (int)$rev['length_change'],
287 287
                 'comment' => $rev['comment'],
288 288
             ];
289 289
         }, $revs);
Please login to merge, or discard this patch.