@@ -12,7 +12,7 @@ |
||
12 | 12 | // Feel free to remove this, extend it, or make something more sophisticated. |
13 | 13 | if (isset($_SERVER['HTTP_CLIENT_IP']) |
14 | 14 | || isset($_SERVER['HTTP_X_FORWARDED_FOR']) |
15 | - || !( in_array(@$_SERVER['REMOTE_ADDR'], [ '127.0.0.1', 'fe80::1', '::1' ]) || php_sapi_name() === 'cli-server' ) |
|
15 | + || !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', 'fe80::1', '::1']) || php_sapi_name() === 'cli-server') |
|
16 | 16 | ) { |
17 | 17 | header('HTTP/1.0 403 Forbidden'); |
18 | 18 | exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.'); |
@@ -15,11 +15,11 @@ |
||
15 | 15 | $data = json_decode($file, true); |
16 | 16 | |
17 | 17 | // Output the contents to the piped file |
18 | -print ( "parameters: |
|
18 | +print ("parameters: |
|
19 | 19 | automated_tools:\r\n" ); |
20 | 20 | foreach ($data as $row) { |
21 | - print " - " . $row["name"] . ": '" . $row["regex"] . "'\r\n"; |
|
21 | + print " - ".$row["name"].": '".$row["regex"]."'\r\n"; |
|
22 | 22 | } |
23 | -print ( " |
|
23 | +print (" |
|
24 | 24 | |
25 | - semi-automated edits source: $url" ); |
|
25 | + semi-automated edits source: $url"); |
@@ -12,8 +12,8 @@ discard block |
||
12 | 12 | $title = str_replace(' ', '_', $title); |
13 | 13 | $client = new GuzzleHttp\Client(); |
14 | 14 | |
15 | - $url = 'https://wikimedia.org/api/rest_v1/metrics/pageviews/per-article/' . |
|
16 | - "$project/all-access/user/" . rawurlencode($title) . '/daily/' . $start . '/' . $end; |
|
15 | + $url = 'https://wikimedia.org/api/rest_v1/metrics/pageviews/per-article/'. |
|
16 | + "$project/all-access/user/".rawurlencode($title).'/daily/'.$start.'/'.$end; |
|
17 | 17 | |
18 | 18 | $res = $client->request('GET', $url); |
19 | 19 | return json_decode($res->getBody()->getContents()); |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | $data = $this->getLastDays($project, $title, $days); |
33 | 33 | |
34 | 34 | // FIXME: needs to handle gotchas |
35 | - return array_sum(array_map(function ($item) { |
|
35 | + return array_sum(array_map(function($item) { |
|
36 | 36 | return $item->views; |
37 | 37 | }, $data->items)); |
38 | 38 | } |
@@ -45,7 +45,7 @@ |
||
45 | 45 | } |
46 | 46 | |
47 | 47 | // Find the path, and complain if English doesn't exist. |
48 | - $path = $this->container->getParameter("kernel.root_dir") . '/../i18n'; |
|
48 | + $path = $this->container->getParameter("kernel.root_dir").'/../i18n'; |
|
49 | 49 | if (!file_exists("$path/en.json")) { |
50 | 50 | throw new Exception("Language directory doesn't exist: $path"); |
51 | 51 | } |
@@ -176,7 +176,7 @@ |
||
176 | 176 | |
177 | 177 | // Iterate over query results, loading each user id into the array |
178 | 178 | while ($row = $res->fetch()) { |
179 | - $adminIdArr[] = $row["user_id"] ; |
|
179 | + $adminIdArr[] = $row["user_id"]; |
|
180 | 180 | } |
181 | 181 | |
182 | 182 | // Set the query results to be useful in a sql statement. |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | 'quote/all.html.twig', |
112 | 112 | [ |
113 | 113 | 'base_dir' => realpath( |
114 | - $this->getParameter('kernel.root_dir') . '/..' |
|
114 | + $this->getParameter('kernel.root_dir').'/..' |
|
115 | 115 | ), |
116 | 116 | 'xtPage' => 'bash', |
117 | 117 | 'quotes' => $quotes, |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | 'quote/view.html.twig', |
161 | 161 | [ |
162 | 162 | 'base_dir' => realpath( |
163 | - $this->getParameter('kernel.root_dir') . '/..' |
|
163 | + $this->getParameter('kernel.root_dir').'/..' |
|
164 | 164 | ), |
165 | 165 | "xtPage" => "bash", |
166 | 166 | "text" => $text, |
@@ -8,6 +8,6 @@ |
||
8 | 8 | */ |
9 | 9 | $loader = require __DIR__.'/../vendor/autoload.php'; |
10 | 10 | |
11 | -AnnotationRegistry::registerLoader([ $loader, 'loadClass' ]); |
|
11 | +AnnotationRegistry::registerLoader([$loader, 'loadClass']); |
|
12 | 12 | |
13 | 13 | return $loader; |
@@ -27,7 +27,7 @@ |
||
27 | 27 | new AppBundle\AppBundle(), |
28 | 28 | ]; |
29 | 29 | |
30 | - if (in_array($this->getEnvironment(), [ 'dev', 'test' ], true)) { |
|
30 | + if (in_array($this->getEnvironment(), ['dev', 'test'], true)) { |
|
31 | 31 | $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle(); |
32 | 32 | $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle(); |
33 | 33 | $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle(); |
@@ -46,11 +46,11 @@ discard block |
||
46 | 46 | $this->page = $page; |
47 | 47 | |
48 | 48 | // Copy over supported attributes |
49 | - $this->id = (int) $attrs['id']; |
|
49 | + $this->id = (int)$attrs['id']; |
|
50 | 50 | $this->timestamp = DateTime::createFromFormat('YmdHis', $attrs['timestamp']); |
51 | 51 | $this->minor = $attrs['minor'] === '1'; |
52 | - $this->length = (int) $attrs['length']; |
|
53 | - $this->length_change = (int) $attrs['length_change']; |
|
52 | + $this->length = (int)$attrs['length']; |
|
53 | + $this->length_change = (int)$attrs['length_change']; |
|
54 | 54 | $this->user = new User($attrs['username']); |
55 | 55 | $this->comment = $attrs['comment']; |
56 | 56 | } |
@@ -179,8 +179,8 @@ discard block |
||
179 | 179 | public function getDiffUrl() |
180 | 180 | { |
181 | 181 | $project = $this->getProject(); |
182 | - $path = str_replace('$1', 'Special:Diff/' . $this->id, $project->getArticlePath()); |
|
183 | - return rtrim($project->getUrl(), '/') . $path; |
|
182 | + $path = str_replace('$1', 'Special:Diff/'.$this->id, $project->getArticlePath()); |
|
183 | + return rtrim($project->getUrl(), '/').$path; |
|
184 | 184 | } |
185 | 185 | |
186 | 186 | /** |
@@ -190,8 +190,8 @@ discard block |
||
190 | 190 | public function getPermaUrl() |
191 | 191 | { |
192 | 192 | $project = $this->getProject(); |
193 | - $path = str_replace('$1', 'Special:PermaLink/' . $this->id, $project->getArticlePath()); |
|
194 | - return rtrim($project->getUrl(), '/') . $path; |
|
193 | + $path = str_replace('$1', 'Special:PermaLink/'.$this->id, $project->getArticlePath()); |
|
194 | + return rtrim($project->getUrl(), '/').$path; |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | /** |