Index: trunk/phase3/includes/upload/UploadFromChunks.php |
— | — | @@ -242,7 +242,7 @@ |
243 | 243 | * Output the chunk to disk |
244 | 244 | * |
245 | 245 | * @param $chunkPath string |
246 | | - * @return \FileRepoStatus |
| 246 | + * @return FileRepoStatus |
247 | 247 | */ |
248 | 248 | private function outputChunk( $chunkPath ){ |
249 | 249 | // Key is fileKey + chunk index |
Index: trunk/phase3/includes/parser/LinkHolderArray.php |
— | — | @@ -135,7 +135,7 @@ |
136 | 136 | /** |
137 | 137 | * Get a subset of the current LinkHolderArray which is sufficient to |
138 | 138 | * interpret the given text. |
139 | | - * @return \LinkHolderArray |
| 139 | + * @return LinkHolderArray |
140 | 140 | */ |
141 | 141 | function getSubArray( $text ) { |
142 | 142 | $sub = new LinkHolderArray( $this->parent ); |
Index: trunk/phase3/includes/db/LoadBalancer.php |
— | — | @@ -91,7 +91,7 @@ |
92 | 92 | /** |
93 | 93 | * Get or set arbitrary data used by the parent object, usually an LBFactory |
94 | 94 | * @param $x |
95 | | - * @return \Mixed |
| 95 | + * @return Mixed |
96 | 96 | */ |
97 | 97 | function parentInfo( $x = null ) { |
98 | 98 | return wfSetVar( $this->mParentInfo, $x ); |
Index: trunk/phase3/includes/filerepo/file/LocalFile.php |
— | — | @@ -1646,7 +1646,7 @@ |
1647 | 1647 | |
1648 | 1648 | /** |
1649 | 1649 | * Run the transaction |
1650 | | - * @return \FileRepoStatus |
| 1650 | + * @return FileRepoStatus |
1651 | 1651 | */ |
1652 | 1652 | function execute() { |
1653 | 1653 | global $wgUseSquid; |
— | — | @@ -1807,7 +1807,7 @@ |
1808 | 1808 | * rows and there's no need to keep the image row locked while it's acquiring those locks |
1809 | 1809 | * The caller may have its own transaction open. |
1810 | 1810 | * So we save the batch and let the caller call cleanup() |
1811 | | - * @return \FileRepoStatus |
| 1811 | + * @return FileRepoStatus |
1812 | 1812 | */ |
1813 | 1813 | function execute() { |
1814 | 1814 | global $wgLang; |
— | — | @@ -2075,7 +2075,7 @@ |
2076 | 2076 | /** |
2077 | 2077 | * Delete unused files in the deleted zone. |
2078 | 2078 | * This should be called from outside the transaction in which execute() was called. |
2079 | | - * @return \FileRepoStatus|void |
| 2079 | + * @return FileRepoStatus|void |
2080 | 2080 | */ |
2081 | 2081 | function cleanup() { |
2082 | 2082 | if ( !$this->cleanupBatch ) { |
— | — | @@ -2196,7 +2196,7 @@ |
2197 | 2197 | |
2198 | 2198 | /** |
2199 | 2199 | * Perform the move. |
2200 | | - * @return \FileRepoStatus |
| 2200 | + * @return FileRepoStatus |
2201 | 2201 | */ |
2202 | 2202 | function execute() { |
2203 | 2203 | $repo = $this->file->repo; |
Index: trunk/phase3/includes/media/Generic.php |
— | — | @@ -188,7 +188,7 @@ |
189 | 189 | * @param $dstPath String: filesystem destination path |
190 | 190 | * @param $dstUrl String: Destination URL to use in output HTML |
191 | 191 | * @param $params Array: Arbitrary set of parameters validated by $this->validateParam() |
192 | | - * @return \MediaTransformOutput |
| 192 | + * @return MediaTransformOutput |
193 | 193 | */ |
194 | 194 | final function getTransform( $image, $dstPath, $dstUrl, $params ) { |
195 | 195 | return $this->doTransform( $image, $dstPath, $dstUrl, $params, self::TRANSFORM_LATER ); |
Index: trunk/phase3/includes/ConfEditor.php |
— | — | @@ -731,7 +731,7 @@ |
732 | 732 | |
733 | 733 | /** |
734 | 734 | * Create a ConfEditorToken from an element of token_get_all() |
735 | | - * @return \ConfEditorToken |
| 735 | + * @return ConfEditorToken |
736 | 736 | */ |
737 | 737 | function newTokenObj( $internalToken ) { |
738 | 738 | if ( is_array( $internalToken ) ) { |
— | — | @@ -783,7 +783,7 @@ |
784 | 784 | /** |
785 | 785 | * Get the token $offset steps ahead of the current position. |
786 | 786 | * $offset may be negative, to get tokens behind the current position. |
787 | | - * @return \ConfEditorToken |
| 787 | + * @return ConfEditorToken |
788 | 788 | */ |
789 | 789 | function getTokenAhead( $offset ) { |
790 | 790 | $pos = $this->pos + $offset; |
Index: trunk/phase3/includes/Namespace.php |
— | — | @@ -186,7 +186,7 @@ |
187 | 187 | * Returns array of all defined namespaces with their canonical |
188 | 188 | * (English) names. |
189 | 189 | * |
190 | | - * @return \array |
| 190 | + * @return array |
191 | 191 | * @since 1.17 |
192 | 192 | */ |
193 | 193 | public static function getCanonicalNamespaces() { |
Index: trunk/phase3/includes/specials/SpecialUnblock.php |
— | — | @@ -136,7 +136,7 @@ |
137 | 137 | |
138 | 138 | /** |
139 | 139 | * Submit callback for an HTMLForm object |
140 | | - * @return \Array( Array(message key, parameters) |
| 140 | + * @return Array( Array(message key, parameters) |
141 | 141 | */ |
142 | 142 | public static function processUIUnblock( array $data, HTMLForm $form ) { |
143 | 143 | return self::processUnblock( $data, $form->getContext() ); |
Index: trunk/phase3/includes/specials/SpecialAllmessages.php |
— | — | @@ -290,7 +290,7 @@ |
291 | 291 | /** |
292 | 292 | * This function normally does a database query to get the results; we need |
293 | 293 | * to make a pretend result using a FakeResultWrapper. |
294 | | - * @return \FakeResultWrapper |
| 294 | + * @return FakeResultWrapper |
295 | 295 | */ |
296 | 296 | function reallyDoQuery( $offset, $limit, $descending ) { |
297 | 297 | $result = new FakeResultWrapper( array() ); |
Index: trunk/phase3/includes/QueryPage.php |
— | — | @@ -384,7 +384,7 @@ |
385 | 385 | |
386 | 386 | /** |
387 | 387 | * Somewhat deprecated, you probably want to be using execute() |
388 | | - * @return \ResultWrapper |
| 388 | + * @return ResultWrapper |
389 | 389 | */ |
390 | 390 | function doQuery( $offset = false, $limit = false ) { |
391 | 391 | if ( $this->isCached() && $this->isCacheable() ) { |
Index: trunk/phase3/includes/StringUtils.php |
— | — | @@ -191,7 +191,7 @@ |
192 | 192 | * Returns an Iterator |
193 | 193 | * @param $separator |
194 | 194 | * @param $subject |
195 | | - * @return \ArrayIterator|\ExplodeIterator |
| 195 | + * @return ArrayIterator|\ExplodeIterator |
196 | 196 | */ |
197 | 197 | static function explode( $separator, $subject ) { |
198 | 198 | if ( substr_count( $subject, $separator ) > 1000 ) { |