Completed
Push — master ( 9572bd...47b900 )
by Sam
03:15
created
src/AppBundle/Controller/ArticleInfoController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -380,7 +380,6 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/AppBundle/Helper/ApiHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/AppBundle/Controller/TopEditsController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Xtools/Page.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
88 88
     }
89 89
 
90 90
     /**
91
-     * @return string
91
+     * @return \string|null
92 92
      */
93 93
     public function getUrl()
94 94
     {
Please login to merge, or discard this patch.
src/Xtools/PagesRepository.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
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,7 +63,6 @@  discard block
 block discarded – undo
63 63
 
64 64
     /**
65 65
      * Get revisions of a single page.
66
-     * @param Project $project
67 66
      * @param Page $page
68 67
      * @param User|null $user Specify to get only revisions by the given user.
69 68
      * @return string[] Each member with keys: id, timestamp, length-
@@ -96,7 +95,6 @@  discard block
 block discarded – undo
96 95
 
97 96
     /**
98 97
      * Get a count of the number of revisions of a single page
99
-     * @param Project $project
100 98
      * @param Page $page
101 99
      * @param User|null $user Specify to only count revisions by the given user.
102 100
      * @return int
Please login to merge, or discard this patch.
src/Xtools/EditCounterRepository.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -435,7 +435,6 @@
 block discarded – undo
435 435
 
436 436
     /**
437 437
      * Get data for a bar chart of monthly edit totals per namespace.
438
-     * @param string $username The username.
439 438
      * @return string[]
440 439
      */
441 440
     public function getMonthCounts(Project $project, User $user)
Please login to merge, or discard this patch.
src/AppBundle/Twig/WikiExtension.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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)
Please login to merge, or discard this patch.