@@ -92,7 +92,7 @@ |
||
92 | 92 | * Adds a line to the log |
93 | 93 | * |
94 | 94 | * @since 1.19 |
95 | - * @param mixed $str |
|
95 | + * @param string $str |
|
96 | 96 | */ |
97 | 97 | public static function log( $str ) { |
98 | 98 | if ( !self::$enabled ) { |
@@ -377,7 +377,7 @@ |
||
377 | 377 | |
378 | 378 | /** |
379 | 379 | * @see JobQueue::pop() |
380 | - * @return Job|bool |
|
380 | + * @return Job |
|
381 | 381 | */ |
382 | 382 | abstract protected function doPop(); |
383 | 383 |
@@ -302,8 +302,8 @@ |
||
302 | 302 | * @param \WebRequest $request |
303 | 303 | * @param string $key |
304 | 304 | * @param string $prefix |
305 | - * @param mixed $default |
|
306 | - * @return mixed |
|
305 | + * @param boolean $default |
|
306 | + * @return string |
|
307 | 307 | */ |
308 | 308 | protected function getCookie( $request, $key, $prefix, $default = null ) { |
309 | 309 | $value = $request->getCookie( $key, $prefix, $default ); |
@@ -55,9 +55,9 @@ |
||
55 | 55 | /** |
56 | 56 | * Construct a new suggestion |
57 | 57 | * @param float $score the suggestion score |
58 | - * @param string $text|null the suggestion text |
|
59 | 58 | * @param Title|null $suggestedTitle the suggested title |
60 | 59 | * @param int|null $suggestedTitleID the suggested title ID |
60 | + * @param string $text |
|
61 | 61 | */ |
62 | 62 | public function __construct( $score, $text = null, Title $suggestedTitle = null, |
63 | 63 | $suggestedTitleID = null ) { |
@@ -771,7 +771,7 @@ discard block |
||
771 | 771 | |
772 | 772 | /** |
773 | 773 | * Get the base regex |
774 | - * @return array |
|
774 | + * @return string[] |
|
775 | 775 | */ |
776 | 776 | function getBaseRegex() { |
777 | 777 | if ( is_null( $this->baseRegex ) ) { |
@@ -815,7 +815,7 @@ discard block |
||
815 | 815 | /** |
816 | 816 | * Get a regex for matching variables with parameters |
817 | 817 | * |
818 | - * @return string |
|
818 | + * @return string[] |
|
819 | 819 | */ |
820 | 820 | function getVariableRegex() { |
821 | 821 | return str_replace( "\\$1", "(.*?)", $this->getRegex() ); |
@@ -868,7 +868,7 @@ discard block |
||
868 | 868 | * Returns array(magic word ID, parameter value) |
869 | 869 | * If there is no parameter value, that element will be false. |
870 | 870 | * |
871 | - * @param array $m |
|
871 | + * @param string[] $m |
|
872 | 872 | * |
873 | 873 | * @throws MWException |
874 | 874 | * @return array |
@@ -30,7 +30,7 @@ |
||
30 | 30 | /** |
31 | 31 | * Record a log event for a change being patrolled |
32 | 32 | * |
33 | - * @param int|RecentChange $rc Change identifier or RecentChange object |
|
33 | + * @param RecentChange $rc Change identifier or RecentChange object |
|
34 | 34 | * @param bool $auto Was this patrol event automatic? |
35 | 35 | * @param User $user User performing the action or null to use $wgUser |
36 | 36 | * @param string|string[] $tags Change tags to add to the patrol log entry |
@@ -296,7 +296,7 @@ |
||
296 | 296 | /** |
297 | 297 | * Get hooks from a directory of PHP files. |
298 | 298 | * @param string $dir Directory path to start at |
299 | - * @param int $recursive Pass self::FIND_RECURSIVE |
|
299 | + * @param int $recurse Pass self::FIND_RECURSIVE |
|
300 | 300 | * @return array Array: key => hook name; value => array of arguments or string 'unknown' |
301 | 301 | */ |
302 | 302 | private function getHooksFromDir( $dir, $recurse = 0 ) { |
@@ -410,6 +410,11 @@ |
||
410 | 410 | return true; |
411 | 411 | } |
412 | 412 | |
413 | + /** |
|
414 | + * @param WatchedItem|null $item |
|
415 | + * @param string $force |
|
416 | + * @param integer $oldid |
|
417 | + */ |
|
413 | 418 | private function getNotificationTimestamp( User $user, Title $title, $item, $force, $oldid ) { |
414 | 419 | if ( !$oldid ) { |
415 | 420 | // No oldid given, assuming latest revision; clear the timestamp. |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | * Get an explanatory message if this repo is read-only. |
221 | 221 | * This checks if an administrator disabled writes to the backend. |
222 | 222 | * |
223 | - * @return string|bool Returns false if the repo is not read-only |
|
223 | + * @return string|false Returns false if the repo is not read-only |
|
224 | 224 | */ |
225 | 225 | public function getReadOnlyReason() { |
226 | 226 | return $this->backend->getReadOnlyReason(); |
@@ -716,7 +716,7 @@ discard block |
||
716 | 716 | * |
717 | 717 | * @param string $query Query string to append |
718 | 718 | * @param string $entry Entry point; defaults to index |
719 | - * @return string|bool False on failure |
|
719 | + * @return string|false False on failure |
|
720 | 720 | */ |
721 | 721 | public function makeUrl( $query = '', $entry = 'index' ) { |
722 | 722 | if ( isset( $this->scriptDirUrl ) ) { |
@@ -797,7 +797,7 @@ discard block |
||
797 | 797 | /** |
798 | 798 | * Get the URL of the stylesheet to apply to description pages |
799 | 799 | * |
800 | - * @return string|bool False on failure |
|
800 | + * @return string|false False on failure |
|
801 | 801 | */ |
802 | 802 | public function getDescriptionStylesheetUrl() { |
803 | 803 | if ( isset( $this->scriptDirUrl ) ) { |
@@ -958,7 +958,7 @@ discard block |
||
958 | 958 | * |
959 | 959 | * @param string|FSFile $src Source file system path, storage path, or virtual URL |
960 | 960 | * @param string $dst Virtual URL or storage path |
961 | - * @param array|string|null $options An array consisting of a key named headers |
|
961 | + * @param string $options An array consisting of a key named headers |
|
962 | 962 | * listing extra headers. If a string, taken as content-disposition header. |
963 | 963 | * (Support for array of options new in 1.23) |
964 | 964 | * @return FileRepoStatus |
@@ -1158,7 +1158,7 @@ discard block |
||
1158 | 1158 | * Options to $options include: |
1159 | 1159 | * - headers : name/value map of HTTP headers to use in response to GET/HEAD requests |
1160 | 1160 | * |
1161 | - * @param string|FSFile $src The source file system path, storage path, or URL |
|
1161 | + * @param string $src The source file system path, storage path, or URL |
|
1162 | 1162 | * @param string $dstRel The destination relative path |
1163 | 1163 | * @param string $archiveRel The relative path where the existing file is to |
1164 | 1164 | * be archived, if there is one. Relative to the public zone root. |