@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | * This file contains only the UserRightsRepository class. |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -declare(strict_types = 1); |
|
| 6 | +declare(strict_types=1); |
|
| 7 | 7 | |
| 8 | 8 | namespace AppBundle\Repository; |
| 9 | 9 | |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | return $this->cache->getItem($cacheKey)->get(); |
| 118 | 118 | } |
| 119 | 119 | |
| 120 | - $rightsPaths = array_map(function ($right) { |
|
| 120 | + $rightsPaths = array_map(function($right) { |
|
| 121 | 121 | return "Group-$right-member"; |
| 122 | 122 | }, $this->getRawRightsNames($project)); |
| 123 | 123 | |
@@ -260,7 +260,7 @@ discard block |
||
| 260 | 260 | FROM $revisionTable |
| 261 | 261 | WHERE rev_actor = :actorId |
| 262 | 262 | AND rev_timestamp >= $offset |
| 263 | - LIMIT 1 OFFSET ".($edits - 1); |
|
| 263 | + LIMIT 1 OFFSET ".($edits-1); |
|
| 264 | 264 | |
| 265 | 265 | $ret = $this->executeProjectsQuery($project, $sql, [ |
| 266 | 266 | 'actorId' => $user->getActorId($project), |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | |
| 4 | 4 | namespace AppBundle\Repository; |
| 5 | 5 | |
@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | $slice = $this->getDbList()[$dbName]; |
| 166 | 166 | // actor_revision table only includes users who have made at least one edit. |
| 167 | 167 | $actorTable = $this->getTableName($dbName, 'actor', 'revision'); |
| 168 | - $queriesBySlice[$slice][] = "SELECT '$dbName' AS `dbName`, actor_id " . |
|
| 168 | + $queriesBySlice[$slice][] = "SELECT '$dbName' AS `dbName`, actor_id ". |
|
| 169 | 169 | "FROM $actorTable WHERE actor_name = :actor"; |
| 170 | 170 | } |
| 171 | 171 | |
@@ -262,13 +262,13 @@ discard block |
||
| 262 | 262 | // Re-assemble into UNIONed queries, executing as many per slice as possible. |
| 263 | 263 | $revisions = []; |
| 264 | 264 | foreach ($queriesBySlice as $slice => $queries) { |
| 265 | - $sql = "SELECT * FROM ((\n" . join("\n) UNION (\n", $queries) . ")) a ORDER BY timestamp DESC LIMIT $limit"; |
|
| 265 | + $sql = "SELECT * FROM ((\n".join("\n) UNION (\n", $queries).")) a ORDER BY timestamp DESC LIMIT $limit"; |
|
| 266 | 266 | $revisions = array_merge($revisions, $this->executeProjectsQuery($slice, $sql)->fetchAll()); |
| 267 | 267 | } |
| 268 | 268 | |
| 269 | 269 | // If there are more than $limit results, re-sort by timestamp. |
| 270 | 270 | if (count($revisions) > $limit) { |
| 271 | - usort($revisions, function ($a, $b) { |
|
| 271 | + usort($revisions, function($a, $b) { |
|
| 272 | 272 | if ($a['unix_timestamp'] === $b['unix_timestamp']) { |
| 273 | 273 | return 0; |
| 274 | 274 | } |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | |
| 4 | 4 | namespace AppBundle\Model; |
| 5 | 5 | |
@@ -102,8 +102,8 @@ discard block |
||
| 102 | 102 | |
| 103 | 103 | if ($sorted) { |
| 104 | 104 | // Sort. |
| 105 | - uasort($this->globalEditCounts, function ($a, $b) { |
|
| 106 | - return $b['total'] - $a['total']; |
|
| 105 | + uasort($this->globalEditCounts, function($a, $b) { |
|
| 106 | + return $b['total']-$a['total']; |
|
| 107 | 107 | }); |
| 108 | 108 | } |
| 109 | 109 | |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | $this->namespace, |
| 141 | 141 | $this->start, |
| 142 | 142 | $this->end, |
| 143 | - self::PAGE_SIZE + 1, |
|
| 143 | + self::PAGE_SIZE+1, |
|
| 144 | 144 | $this->offset |
| 145 | 145 | ); |
| 146 | 146 | $globalEdits = []; |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | * This file contains only the User class. |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -declare(strict_types = 1); |
|
| 6 | +declare(strict_types=1); |
|
| 7 | 7 | |
| 8 | 8 | namespace AppBundle\Model; |
| 9 | 9 | |
@@ -230,7 +230,7 @@ discard block |
||
| 230 | 230 | */ |
| 231 | 231 | public function countEdits(Project $project, $namespace = 'all', $start = false, $end = false): int |
| 232 | 232 | { |
| 233 | - return (int) $this->getRepository()->countEdits($project, $this, $namespace, $start, $end); |
|
| 233 | + return (int)$this->getRepository()->countEdits($project, $this, $namespace, $start, $end); |
|
| 234 | 234 | } |
| 235 | 235 | |
| 236 | 236 | /** |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | * This file contains only the Project class. |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -declare(strict_types = 1); |
|
| 6 | +declare(strict_types=1); |
|
| 7 | 7 | |
| 8 | 8 | namespace AppBundle\Model; |
| 9 | 9 | |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | */ |
| 146 | 146 | public function getUrl(bool $withTrailingSlash = true): string |
| 147 | 147 | { |
| 148 | - return rtrim($this->getBasicInfo()['url'], '/') . ($withTrailingSlash ? '/' : ''); |
|
| 148 | + return rtrim($this->getBasicInfo()['url'], '/').($withTrailingSlash ? '/' : ''); |
|
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | /** |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | public function getScript(): string |
| 182 | 182 | { |
| 183 | 183 | $metadata = $this->getMetadata(); |
| 184 | - return $metadata['general']['script'] ?? $this->getScriptPath() . '/index.php'; |
|
| 184 | + return $metadata['general']['script'] ?? $this->getScriptPath().'/index.php'; |
|
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | /** |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | */ |
| 191 | 191 | public function getApiUrl(): string |
| 192 | 192 | { |
| 193 | - return rtrim($this->getUrl(), '/') . $this->getRepository()->getApiPath(); |
|
| 193 | + return rtrim($this->getUrl(), '/').$this->getRepository()->getApiPath(); |
|
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | /** |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | */ |
| 266 | 266 | public function userOptInPage(User $user): string |
| 267 | 267 | { |
| 268 | - return 'User:' . $user->getUsername() . '/EditCounterOptIn.js'; |
|
| 268 | + return 'User:'.$user->getUsername().'/EditCounterOptIn.js'; |
|
| 269 | 269 | } |
| 270 | 270 | |
| 271 | 271 | /** |
@@ -299,7 +299,7 @@ discard block |
||
| 299 | 299 | } |
| 300 | 300 | |
| 301 | 301 | // 4. Lastly, see if they've opted in globally on the default project or Meta. |
| 302 | - $globalPageName = $user->getUsername() . '/EditCounterGlobalOptIn.js'; |
|
| 302 | + $globalPageName = $user->getUsername().'/EditCounterGlobalOptIn.js'; |
|
| 303 | 303 | $globalProject = $this->getRepository()->getGlobalProject(); |
| 304 | 304 | if ($globalProject instanceof Project) { |
| 305 | 305 | $globalExists = $globalProject->getRepository() |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | * This file contains only the CategoryEdits class. |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -declare(strict_types = 1); |
|
| 6 | +declare(strict_types=1); |
|
| 7 | 7 | |
| 8 | 8 | namespace AppBundle\Model; |
| 9 | 9 | |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | ) { |
| 47 | 47 | $this->project = $project; |
| 48 | 48 | $this->user = $user; |
| 49 | - $this->categories = array_map(function ($category) { |
|
| 49 | + $this->categories = array_map(function($category) { |
|
| 50 | 50 | return str_replace(' ', '_', $category); |
| 51 | 51 | }, $categories); |
| 52 | 52 | $this->start = $start; |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | */ |
| 79 | 79 | public function getCategoriesNormalized(): array |
| 80 | 80 | { |
| 81 | - return array_map(function ($category) { |
|
| 81 | + return array_map(function($category) { |
|
| 82 | 82 | return str_replace('_', ' ', $category); |
| 83 | 83 | }, $this->categories); |
| 84 | 84 | } |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | * This file contains only the Repository class. |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -declare(strict_types = 1); |
|
| 6 | +declare(strict_types=1); |
|
| 7 | 7 | |
| 8 | 8 | namespace AppBundle\Repository; |
| 9 | 9 | |
@@ -221,7 +221,7 @@ discard block |
||
| 221 | 221 | // $tableExtension in order to generate the new table name |
| 222 | 222 | if ($this->isLabs() && null !== $tableExtension) { |
| 223 | 223 | $mapped = true; |
| 224 | - $tableName .=('' === $tableExtension ? '' : '_'.$tableExtension); |
|
| 224 | + $tableName .= ('' === $tableExtension ? '' : '_'.$tableExtension); |
|
| 225 | 225 | } elseif ($this->container->hasParameter("app.table.$tableName")) { |
| 226 | 226 | // Use the table specified in the table mapping configuration, if present. |
| 227 | 227 | $mapped = true; |
@@ -233,7 +233,7 @@ discard block |
||
| 233 | 233 | // This is a safeguard in case table mapping isn't properly set up. |
| 234 | 234 | $isLoggingOrRevision = in_array($tableName, ['revision', 'logging', 'archive']); |
| 235 | 235 | if (!$mapped && $isLoggingOrRevision && $this->isLabs()) { |
| 236 | - $tableName .="_userindex"; |
|
| 236 | + $tableName .= "_userindex"; |
|
| 237 | 237 | } |
| 238 | 238 | |
| 239 | 239 | // Figure out database name. |
@@ -356,7 +356,7 @@ discard block |
||
| 356 | 356 | $offset = date('YmdHis', $offset); |
| 357 | 357 | $datesConditions .= " AND {$tableAlias}{$field} < '$offset'"; |
| 358 | 358 | } elseif (is_int($end)) { |
| 359 | - $end = date('Ymd', $end) . '235959'; |
|
| 359 | + $end = date('Ymd', $end).'235959'; |
|
| 360 | 360 | $datesConditions .= " AND {$tableAlias}{$field} <= '$end'"; |
| 361 | 361 | } |
| 362 | 362 | |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | * This file contains only the Pages class. |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -declare(strict_types = 1); |
|
| 6 | +declare(strict_types=1); |
|
| 7 | 7 | |
| 8 | 8 | namespace AppBundle\Model; |
| 9 | 9 | |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | $numResults = count($this->getResults()[$this->getNamespace()]); |
| 129 | - $timestamp = new DateTime($this->getResults()[$this->getNamespace()][$numResults - 1]['rev_timestamp']); |
|
| 129 | + $timestamp = new DateTime($this->getResults()[$this->getNamespace()][$numResults-1]['rev_timestamp']); |
|
| 130 | 130 | return $timestamp->format('Y-m-d\TH:i:s'); |
| 131 | 131 | } |
| 132 | 132 | |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | * This file contains only the AdminStats class. |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -declare(strict_types = 1); |
|
| 6 | +declare(strict_types=1); |
|
| 7 | 7 | |
| 8 | 8 | namespace AppBundle\Model; |
| 9 | 9 | |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | $stats = $this->groupStatsByUsername($stats); |
| 97 | 97 | |
| 98 | 98 | // Resort, as for some reason the SQL doesn't do this properly. |
| 99 | - uasort($stats, function ($a, $b) { |
|
| 99 | + uasort($stats, function($a, $b) { |
|
| 100 | 100 | if ($a['total'] === $b['total']) { |
| 101 | 101 | return 0; |
| 102 | 102 | } |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | $this->usersAndGroups = $this->project->getUsersInGroups($groupUserGroups['local'], $groupUserGroups['global']); |
| 128 | 128 | |
| 129 | 129 | // Populate $this->usersInGroup with users who are in the relevant user group for $this->group. |
| 130 | - $this->usersInGroup = array_keys(array_filter($this->usersAndGroups, function ($groups) { |
|
| 130 | + $this->usersInGroup = array_keys(array_filter($this->usersAndGroups, function($groups) { |
|
| 131 | 131 | return in_array($this->getRelevantUserGroup(), $groups); |
| 132 | 132 | })); |
| 133 | 133 | |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | } |
| 151 | 151 | |
| 152 | 152 | if ($wikiPath) { |
| 153 | - $out = array_map(function ($url) { |
|
| 153 | + $out = array_map(function($url) { |
|
| 154 | 154 | return str_replace('.svg.png', '.svg', preg_replace('/.*\/18px-/', '', $url)); |
| 155 | 155 | }, $out); |
| 156 | 156 | } |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | */ |
| 165 | 165 | public function numDays(): int |
| 166 | 166 | { |
| 167 | - return (int)(($this->end - $this->start) / 60 / 60 / 24) + 1; |
|
| 167 | + return (int)(($this->end-$this->start) / 60 / 60 / 24)+1; |
|
| 168 | 168 | } |
| 169 | 169 | |
| 170 | 170 | /** |
@@ -254,6 +254,6 @@ discard block |
||
| 254 | 254 | */ |
| 255 | 255 | public function getNumWithActionsNotInGroup(): int |
| 256 | 256 | { |
| 257 | - return count($this->adminStats) - $this->numWithActions; |
|
| 257 | + return count($this->adminStats)-$this->numWithActions; |
|
| 258 | 258 | } |
| 259 | 259 | } |