@@ -380,7 +380,6 @@ |
||
380 | 380 | |
381 | 381 | /** |
382 | 382 | * Get the size of the diff |
383 | - * @param int $rev The index of the revision within $this->pageHistory |
|
384 | 383 | * @return int Size of the diff |
385 | 384 | */ |
386 | 385 | private function getDiffSize($revIndex) |
@@ -72,7 +72,6 @@ discard block |
||
72 | 72 | |
73 | 73 | /** |
74 | 74 | * Get a link to the given user's userpage, or to Special:Contribs if $username is an IP |
75 | - * @param string $username Username |
|
76 | 75 | * @param string $projectUrl Project domain and protocol such as https://en.wikipedia.org |
77 | 76 | * @param string [$label] The link text, defaults to $username |
78 | 77 | * @return string Markup |
@@ -176,7 +175,7 @@ discard block |
||
176 | 175 | /** |
177 | 176 | * Get links to pageviews tools for the given page |
178 | 177 | * @param string $title Title of page |
179 | - * @param string $projectUrl Project domain such as en.wikipedia.org |
|
178 | + * @param string $project Project domain such as en.wikipedia.org |
|
180 | 179 | * @return string Markup |
181 | 180 | */ |
182 | 181 | public function pageviewsLinks($title, $project) |
@@ -14,6 +14,9 @@ |
||
14 | 14 | /** @var string[] Basic metadata about the project */ |
15 | 15 | protected $metadata; |
16 | 16 | |
17 | + /** |
|
18 | + * @param string $nameOrUrl |
|
19 | + */ |
|
17 | 20 | public function __construct($nameOrUrl) |
18 | 21 | { |
19 | 22 | $this->nameUnnormalized = $nameOrUrl; |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | |
53 | 53 | /** |
54 | 54 | * Get this page's database ID. |
55 | - * @return int |
|
55 | + * @return \string|null |
|
56 | 56 | */ |
57 | 57 | public function getId() |
58 | 58 | { |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
78 | - * @return string |
|
78 | + * @return \string|null |
|
79 | 79 | */ |
80 | 80 | public function getUrl() |
81 | 81 | { |
@@ -177,7 +177,7 @@ |
||
177 | 177 | * Get a list of namespaces on the given project. |
178 | 178 | * |
179 | 179 | * @param string $project such as en.wikipedia.org |
180 | - * @return string[] Array of namespace IDs (keys) to names (values). |
|
180 | + * @return string Array of namespace IDs (keys) to names (values). |
|
181 | 181 | */ |
182 | 182 | public function namespaces($project) |
183 | 183 | { |
@@ -96,7 +96,7 @@ |
||
96 | 96 | * List top edits by this user for all pages in a particular namespace. |
97 | 97 | * @param User $user The User. |
98 | 98 | * @param Project $project The project. |
99 | - * @param integer|string $namespaceId The namespace ID or 'all' |
|
99 | + * @param integer $namespaceId The namespace ID or 'all' |
|
100 | 100 | * @return \Symfony\Component\HttpFoundation\Response |
101 | 101 | */ |
102 | 102 | protected function namespaceTopEdits(User $user, Project $project, $namespaceId) |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | * @param Project $project The project to which the page belongs. |
16 | 16 | * @param string $pageTitle Page title. |
17 | 17 | * @param boolean $followRedirects Whether or not to resolve redirects |
18 | - * @return string[] Array with some of the following keys: pageid, title, missing, displaytitle, |
|
18 | + * @return string|null Array with some of the following keys: pageid, title, missing, displaytitle, |
|
19 | 19 | * url. |
20 | 20 | */ |
21 | 21 | public function getPageInfo(Project $project, $pageTitle, $followRedirects = true) |
@@ -63,9 +63,8 @@ discard block |
||
63 | 63 | |
64 | 64 | /** |
65 | 65 | * Get revisions of a single page. |
66 | - * @param Project $project |
|
67 | 66 | * @param Page $page |
68 | - * @param User|null $user |
|
67 | + * @param User $user |
|
69 | 68 | * @return string[] Each member with keys: id, timestamp, length- |
70 | 69 | */ |
71 | 70 | public function getRevisions(Page $page, User $user) |
@@ -250,7 +250,6 @@ discard block |
||
250 | 250 | * Get a user's total edit count on one or more project. |
251 | 251 | * Requires the CentralAuth extension to be installed on the project. |
252 | 252 | * |
253 | - * @param string $username The username. |
|
254 | 253 | * @param Project $project The project to start from. |
255 | 254 | * @return mixed[]|boolean Array of total edit counts, or false if none could be found. |
256 | 255 | */ |
@@ -300,7 +299,7 @@ discard block |
||
300 | 299 | |
301 | 300 | /** |
302 | 301 | * Get total edit counts for the top 10 projects for this user. |
303 | - * @param string $username The username. |
|
302 | + * @param string $stopwatchName |
|
304 | 303 | * @return string[] Elements are arrays with 'dbName', 'url', 'name', and 'total'. |
305 | 304 | */ |
306 | 305 | protected function getRevisionCountsAllProjectsNoCentralAuth( |
@@ -395,7 +394,6 @@ discard block |
||
395 | 394 | |
396 | 395 | /** |
397 | 396 | * Get this user's most recent 10 edits across all projects. |
398 | - * @param string $username The username. |
|
399 | 397 | * @param integer $topN The number of items to return. |
400 | 398 | * @param integer $days The number of days to search from each wiki. |
401 | 399 | * @return string[] |
@@ -453,7 +451,6 @@ discard block |
||
453 | 451 | |
454 | 452 | /** |
455 | 453 | * Get data for a bar chart of monthly edit totals per namespace. |
456 | - * @param string $username The username. |
|
457 | 454 | * @return string[] |
458 | 455 | */ |
459 | 456 | public function getMonthCounts(Project $project, User $user) |
@@ -489,7 +486,6 @@ discard block |
||
489 | 486 | |
490 | 487 | /** |
491 | 488 | * Get yearly edit totals for this user, grouped by namespace. |
492 | - * @param string $username |
|
493 | 489 | * @return string[] ['<namespace>' => ['<year>' => 'total', ... ], ... ] |
494 | 490 | */ |
495 | 491 | public function getYearCounts(Project $project, User $user) |