@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | string $centralAuthProject |
67 | 67 | ): RedirectResponse { |
68 | 68 | try { |
69 | - [ $next, $token ] = $this->getOauthClient($request, $projectRepo, $centralAuthProject)->initiate(); |
|
69 | + [$next, $token] = $this->getOauthClient($request, $projectRepo, $centralAuthProject)->initiate(); |
|
70 | 70 | } catch (Exception $oauthException) { |
71 | 71 | throw $oauthException; |
72 | 72 | // @TODO Make this work. |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | . '?title=Special:OAuth'; |
156 | 156 | $conf = new ClientConfig($endpoint); |
157 | 157 | $consumerKey = $this->getParameter('oauth_key'); |
158 | - $consumerSecret = $this->getParameter('oauth_secret'); |
|
158 | + $consumerSecret = $this->getParameter('oauth_secret'); |
|
159 | 159 | $conf->setConsumer(new Consumer($consumerKey, $consumerSecret)); |
160 | 160 | $this->oauthClient = new Client($conf); |
161 | 161 |
@@ -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 @@ |
||
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. |
@@ -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 | |
@@ -958,16 +958,16 @@ discard block |
||
958 | 958 | |
959 | 959 | if ($info['all'] > 1) { |
960 | 960 | // Number of seconds/days between first and last edit. |
961 | - $secs = $info['last']->getTimestamp() - $info['first']->getTimestamp(); |
|
961 | + $secs = $info['last']->getTimestamp()-$info['first']->getTimestamp(); |
|
962 | 962 | $days = $secs / (60 * 60 * 24); |
963 | 963 | |
964 | 964 | // Average time between edits (in days). |
965 | - $this->editors[$editor]['atbe'] = round($days / ($info['all'] - 1), 1); |
|
965 | + $this->editors[$editor]['atbe'] = round($days / ($info['all']-1), 1); |
|
966 | 966 | } |
967 | 967 | } |
968 | 968 | |
969 | 969 | // Loop through again and add percentages. |
970 | - $this->topTenEditorsByEdits = array_map(function ($editor) use ($topTenCount) { |
|
970 | + $this->topTenEditorsByEdits = array_map(function($editor) use ($topTenCount) { |
|
971 | 971 | $editor['percentage'] = 100 * ($editor['value'] / $topTenCount); |
972 | 972 | return $editor; |
973 | 973 | }, $topTenEditorsByEdits); |
@@ -985,7 +985,7 @@ discard block |
||
985 | 985 | { |
986 | 986 | // First sort editors array by the amount of text they added. |
987 | 987 | $topTenEditorsByAdded = $this->editors; |
988 | - uasort($topTenEditorsByAdded, function ($a, $b) { |
|
988 | + uasort($topTenEditorsByAdded, function($a, $b) { |
|
989 | 989 | if ($a['added'] === $b['added']) { |
990 | 990 | return 0; |
991 | 991 | } |
@@ -996,12 +996,12 @@ discard block |
||
996 | 996 | $topTenEditorsByAdded = array_keys(array_slice($topTenEditorsByAdded, 0, 10, true)); |
997 | 997 | |
998 | 998 | // Get the sum of added text so that we can add in percentages. |
999 | - $topTenTotalAdded = array_sum(array_map(function ($editor) { |
|
999 | + $topTenTotalAdded = array_sum(array_map(function($editor) { |
|
1000 | 1000 | return $this->editors[$editor]['added']; |
1001 | 1001 | }, $topTenEditorsByAdded)); |
1002 | 1002 | |
1003 | 1003 | // Then build a new array of top 10 editors by added text in the data structure needed for the chart. |
1004 | - return array_map(function ($editor) use ($topTenTotalAdded) { |
|
1004 | + return array_map(function($editor) use ($topTenTotalAdded) { |
|
1005 | 1005 | $added = $this->editors[$editor]['added']; |
1006 | 1006 | return [ |
1007 | 1007 | 'label' => $editor, |