Remove unmatched @param
authorumherirrender <umherirrender_de.wp@web.de>
Sat, 16 Aug 2014 18:49:41 +0000 (20:49 +0200)
committerumherirrender <umherirrender_de.wp@web.de>
Sat, 16 Aug 2014 20:50:02 +0000 (22:50 +0200)
There is no method parameter for this @param

Change-Id: I42d1e3439e5b767be09920d536bee34bcd017ec9

includes/MWTimestamp.php
includes/filerepo/RepoGroup.php
includes/jobqueue/jobs/DoubleRedirectJob.php

index bc59588..26f5e54 100644 (file)
@@ -238,7 +238,6 @@ class MWTimestamp {
         * @since 1.22
         *
         * @param User $user User to take preferences from
-        * @param[out] MWTimestamp $ts Timestamp to adjust
         * @return DateInterval Offset that was applied to the timestamp
         */
        public function offsetForUser( User $user ) {
index 0f80e16..8c0c781 100644 (file)
@@ -170,7 +170,7 @@ class RepoGroup {
        /**
         * Search repositories for many files at once.
         *
-        * @param array $items An array of titles, or an array of findFile() options with
+        * @param array $inputItems An array of titles, or an array of findFile() options with
         *    the "title" option giving the title. Example:
         *
         *     $findItem = array( 'title' => $title, 'private' => true );
@@ -183,10 +183,6 @@ class RepoGroup {
         *       The search title uses the input titles; the other is the final post-redirect title.
         *       All titles are returned as string DB keys and the inner array is associative.
         * @return array Map of (file name => File objects) for matches
-        *
-        * @param array $inputItems
-        * @param int $flags
-        * @return array
         */
        function findFiles( array $inputItems, $flags = 0 ) {
                if ( !$this->reposInitialised ) {
index 34c302e..2561f2f 100644 (file)
@@ -84,7 +84,6 @@ class DoubleRedirectJob extends Job {
        /**
         * @param Title $title
         * @param array|bool $params
-        * @param int $id
         */
        function __construct( $title, $params = false ) {
                parent::__construct( 'fixDoubleRedirect', $title, $params );