@@ -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 | |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | } |
165 | 165 | |
166 | 166 | if ($this->parameterBag->has("database_meta_table")) { |
167 | - $table = $this->parameterBag->get('database_meta_name') . '.' . |
|
167 | + $table = $this->parameterBag->get('database_meta_name').'.'. |
|
168 | 168 | $this->parameterBag->get('database_meta_table'); |
169 | 169 | } else { |
170 | 170 | $table = "meta_p.wiki"; |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | || $projMetadata['url'] == "https://$project" |
214 | 214 | || $projMetadata['url'] == "https://$project.org" |
215 | 215 | || $projMetadata['url'] == "https://www.$project") { |
216 | - $this->logger->debug(__METHOD__ . " Using cached data for $project"); |
|
216 | + $this->logger->debug(__METHOD__." Using cached data for $project"); |
|
217 | 217 | return $projMetadata; |
218 | 218 | } |
219 | 219 | } |
@@ -409,7 +409,7 @@ discard block |
||
409 | 409 | ]])->getBody()->getContents(), true); |
410 | 410 | |
411 | 411 | $extensions = $res['query']['extensions'] ?? []; |
412 | - return array_map(function ($extension) { |
|
412 | + return array_map(function($extension) { |
|
413 | 413 | return $extension['name']; |
414 | 414 | }, $extensions); |
415 | 415 | } |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace App\Repository; |
5 | 5 |
@@ -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\Helper; |
6 | 6 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | } |
60 | 60 | |
61 | 61 | // Find the path, and complain if English doesn't exist. |
62 | - $path = $this->projectDir . '/i18n'; |
|
62 | + $path = $this->projectDir.'/i18n'; |
|
63 | 63 | if (!file_exists("$path/en.json")) { |
64 | 64 | throw new Exception("Language directory doesn't exist: $path"); |
65 | 65 | } |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | $messageFiles = glob($this->projectDir.'/i18n/*.json'); |
115 | 115 | |
116 | 116 | $languages = array_values(array_unique(array_map( |
117 | - function ($filename) { |
|
117 | + function($filename) { |
|
118 | 118 | return basename($filename, '.json'); |
119 | 119 | }, |
120 | 120 | $messageFiles |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | $this->getIntuition()->getLangFallbacks($useLang) |
159 | 159 | ); |
160 | 160 | |
161 | - return array_filter($fallbacks, function ($lang) use ($i18nPath) { |
|
161 | + return array_filter($fallbacks, function($lang) use ($i18nPath) { |
|
162 | 162 | return is_file($i18nPath.$lang.'.json'); |
163 | 163 | }); |
164 | 164 | } |
@@ -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\Helper; |
6 | 6 | |
@@ -79,8 +79,8 @@ discard block |
||
79 | 79 | return $this->cache->getItem($cacheKey)->get(); |
80 | 80 | } |
81 | 81 | |
82 | - $uri = 'https://meta.wikimedia.org/w/index.php?action=raw&ctype=application/json&title=' . |
|
83 | - 'MediaWiki:XTools-AutoEdits.json' . ($useSandbox ? '/sandbox' : ''); |
|
82 | + $uri = 'https://meta.wikimedia.org/w/index.php?action=raw&ctype=application/json&title='. |
|
83 | + 'MediaWiki:XTools-AutoEdits.json'.($useSandbox ? '/sandbox' : ''); |
|
84 | 84 | |
85 | 85 | if ($useSandbox && $this->session->get('logged_in_user')) { |
86 | 86 | // Request via OAuth to get around server-side caching. |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | |
144 | 144 | // Once last walk through for some tidying up and validation. |
145 | 145 | $invalid = []; |
146 | - array_walk($this->tools[$projectDomain], function (&$data, $tool) use (&$invalid): void { |
|
146 | + array_walk($this->tools[$projectDomain], function(&$data, $tool) use (&$invalid): void { |
|
147 | 147 | // Populate the 'label' with the tool name, if a label doesn't already exist. |
148 | 148 | $data['label'] = $data['label'] ?? $tool; |
149 | 149 | |
@@ -227,14 +227,14 @@ discard block |
||
227 | 227 | |
228 | 228 | $revertEntries = array_filter( |
229 | 229 | $this->getTools($project), |
230 | - function ($tool) { |
|
230 | + function($tool) { |
|
231 | 231 | return isset($tool['revert']) && isset($tool['regex']); |
232 | 232 | } |
233 | 233 | ); |
234 | 234 | |
235 | 235 | // If 'revert' is set to `true`, then use 'regex' as the regular expression, |
236 | 236 | // otherwise 'revert' is assumed to be the regex string. |
237 | - $this->revertTools[$projectDomain] = array_map(function ($revertTool) { |
|
237 | + $this->revertTools[$projectDomain] = array_map(function($revertTool) { |
|
238 | 238 | return [ |
239 | 239 | 'link' => $revertTool['link'], |
240 | 240 | 'regex' => true === $revertTool['revert'] ? $revertTool['regex'] : $revertTool['revert'], |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | if (file_exists(dirname(__DIR__).'/var/cache/prod/srcApp_KernelProdContainer.preload.php')) { |
6 | 6 | require dirname(__DIR__).'/var/cache/prod/srcApp_KernelProdContainer.preload.php'; |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace DoctrineMigrations; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace DoctrineMigrations; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace DoctrineMigrations; |
6 | 6 |
@@ -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 | |
@@ -126,14 +126,14 @@ discard block |
||
126 | 126 | $firstAddrUnpacked = unpack('H*', $firstAddrBin); |
127 | 127 | $firstAddrHex = reset($firstAddrUnpacked); |
128 | 128 | $range[0] = inet_ntop($firstAddrBin); |
129 | - $flexBits = 128 - $prefixLen; |
|
129 | + $flexBits = 128-$prefixLen; |
|
130 | 130 | $lastAddrHex = $firstAddrHex; |
131 | 131 | |
132 | 132 | $pos = 31; |
133 | 133 | while ($flexBits > 0) { |
134 | 134 | $orig = substr($lastAddrHex, $pos, 1); |
135 | 135 | $origVal = hexdec($orig); |
136 | - $newVal = $origVal | (pow(2, min(4, $flexBits)) - 1); |
|
136 | + $newVal = $origVal | (pow(2, min(4, $flexBits))-1); |
|
137 | 137 | $new = dechex($newVal); |
138 | 138 | $lastAddrHex = substr_replace($lastAddrHex, $new, $pos, 1); |
139 | 139 | $flexBits -= 4; |
@@ -144,8 +144,8 @@ discard block |
||
144 | 144 | $range[1] = inet_ntop($lastAddrBin); |
145 | 145 | } else { |
146 | 146 | $cidr = explode('/', $this->username); |
147 | - $range[0] = long2ip(ip2long($cidr[0]) & -1 << (32 - (int)$cidr[1])); |
|
148 | - $range[1] = long2ip(ip2long($range[0]) + pow(2, (32 - (int)$cidr[1])) - 1); |
|
147 | + $range[0] = long2ip(ip2long($cidr[0]) & -1 << (32-(int)$cidr[1])); |
|
148 | + $range[1] = long2ip(ip2long($range[0])+pow(2, (32-(int)$cidr[1]))-1); |
|
149 | 149 | } |
150 | 150 | |
151 | 151 | // Find the leftmost common characters between the two addresses. |