Completed
Push — master ( 5d9cd9...874e6e )
by mw
62:18 queued 26:13
created
src/ApplicationFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -365,7 +365,7 @@  discard block
 block discarded – undo
365 365
 	/**
366 366
 	 * @since 2.4
367 367
 	 *
368
-	 * @return MediaWikiNsContentReader
368
+	 * @return MediaWiki\MediaWikiNsContentReader
369 369
 	 */
370 370
 	public function getMediaWikiNsContentReader() {
371 371
 		return $this->callbackLoader->singleton( 'MediaWikiNsContentReader' );
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
 	/**
446 446
 	 * @since 2.5
447 447
 	 *
448
-	 * @return LoggerInterface
448
+	 * @return \Psr\Log\LoggerInterface
449 449
 	 */
450 450
 	public function getMediaWikiLogger() {
451 451
 		return $this->callbackLoader->singleton( 'MediaWikiLogger' );
Please login to merge, or discard this patch.
src/DeferredCallableUpdate.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 	 *
115 115
 	 * @since 2.5
116 116
 	 *
117
-	 * @param string|null $queue
117
+	 * @param string $fingerprint
118 118
 	 */
119 119
 	public function setFingerprint( $fingerprint = null ) {
120 120
 		$this->fingerprint = md5( $fingerprint );
@@ -187,6 +187,9 @@  discard block
 block discarded – undo
187 187
 		$this->doUpdate();
188 188
 	}
189 189
 
190
+	/**
191
+	 * @param string $message
192
+	 */
190 193
 	private function log( $message, $context = array() ) {
191 194
 
192 195
 		if ( $this->logger === null ) {
Please login to merge, or discard this patch.