@@ -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) |
@@ -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) |
@@ -80,7 +80,6 @@ discard block |
||
80 | 80 | |
81 | 81 | /** |
82 | 82 | * Link to list of users who are in the given user group |
83 | - * @param string $username Username |
|
84 | 83 | * @param string $projectUrl Project domain and protocol such as https://en.wikipedia.org |
85 | 84 | * @param string [$label] The link text, defaults to $username |
86 | 85 | * @return string Markup |
@@ -230,7 +229,7 @@ discard block |
||
230 | 229 | /** |
231 | 230 | * Get links to pageviews tools for the given page |
232 | 231 | * @param string $title Title of page |
233 | - * @param string $projectUrl Project domain such as en.wikipedia.org |
|
232 | + * @param string $project Project domain such as en.wikipedia.org |
|
234 | 233 | * @return string Markup |
235 | 234 | */ |
236 | 235 | public function pageviewsLinks($title, $project) |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | /** |
57 | 57 | * Get this page's database ID. |
58 | - * @return int |
|
58 | + * @return \string|null |
|
59 | 59 | */ |
60 | 60 | public function getId() |
61 | 61 | { |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | |
66 | 66 | /** |
67 | 67 | * Get this page's length in bytes. |
68 | - * @return int |
|
68 | + * @return \string|null |
|
69 | 69 | */ |
70 | 70 | public function getLength() |
71 | 71 | { |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | } |
89 | 89 | |
90 | 90 | /** |
91 | - * @return string |
|
91 | + * @return \string|null |
|
92 | 92 | */ |
93 | 93 | public function getUrl() |
94 | 94 | { |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | |
99 | 99 | /** |
100 | 100 | * Get the numerical value for the namespace |
101 | - * @return int |
|
101 | + * @return \string|null |
|
102 | 102 | */ |
103 | 103 | public function getNamespace() |
104 | 104 | { |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | |
109 | 109 | /** |
110 | 110 | * Get the number of page watchers |
111 | - * @return int |
|
111 | + * @return \string|null |
|
112 | 112 | */ |
113 | 113 | public function getWatchers() |
114 | 114 | { |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | * Get metadata about a single page from the API. |
15 | 15 | * @param Project $project The project to which the page belongs. |
16 | 16 | * @param string $pageTitle Page title. |
17 | - * @return string[] Array with some of the following keys: pageid, title, missing, displaytitle, |
|
17 | + * @return string|null Array with some of the following keys: pageid, title, missing, displaytitle, |
|
18 | 18 | * url. |
19 | 19 | */ |
20 | 20 | public function getPageInfo(Project $project, $pageTitle) |
@@ -58,7 +58,6 @@ discard block |
||
58 | 58 | |
59 | 59 | /** |
60 | 60 | * Get revisions of a single page. |
61 | - * @param Project $project |
|
62 | 61 | * @param Page $page |
63 | 62 | * @param User|null $user Specify to get only revisions by the given user. |
64 | 63 | * @return string[] Each member with keys: id, timestamp, length- |
@@ -92,7 +91,6 @@ discard block |
||
92 | 91 | |
93 | 92 | /** |
94 | 93 | * Get a count of the number of revisions of a single page |
95 | - * @param Project $project |
|
96 | 94 | * @param Page $page |
97 | 95 | * @param User|null $user Specify to only count revisions by the given user. |
98 | 96 | * @return int |