Completed
Push — master ( 0a3cfd...237071 )
by
unknown
07:05 queued 13s
created
client/includes/Hooks/InfoActionHookHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@
 block discarded – undo
147 147
 
148 148
 	/**
149 149
 	 * @param IContextSource $context
150
-	 * @param array $usage
150
+	 * @param \Wikibase\Client\Usage\EntityUsage[] $usage
151 151
 	 *
152 152
 	 * @return string[]
153 153
 	 */
Please login to merge, or discard this patch.
repo/tests/phpunit/includes/Store/Sql/SqlEntityIdPagerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -80,6 +80,9 @@
 block discarded – undo
80 80
 		);
81 81
 	}
82 82
 
83
+	/**
84
+	 * @param boolean $isRedirect
85
+	 */
83 86
 	private function getPageRow( EntityId $entityId, $isRedirect ) {
84 87
 		$entityNamespaceLookup = WikibaseRepo::getDefaultInstance()->getEntityNamespaceLookup();
85 88
 
Please login to merge, or discard this patch.
repo/tests/phpunit/includes/Content/ItemContentTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
 	}
48 48
 
49 49
 	/**
50
-	 * @param ItemId|null $itemId
50
+	 * @param null|EntityId $itemId
51 51
 	 *
52 52
 	 * @throws InvalidArgumentException
53 53
 	 * @return ItemContent
Please login to merge, or discard this patch.
repo/tests/phpunit/includes/Content/PropertyContentTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 	}
32 32
 
33 33
 	/**
34
-	 * @param PropertyId|null $propertyId
34
+	 * @param null|EntityId $propertyId
35 35
 	 *
36 36
 	 * @throws InvalidArgumentException
37 37
 	 * @return PropertyContent
Please login to merge, or discard this patch.
client/includes/OtherProjectsSitesGenerator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
 	}
113 113
 
114 114
 	/**
115
-	 * @return Site
115
+	 * @return string
116 116
 	 */
117 117
 	private function getLocalSite() {
118 118
 		return $this->siteLookup->getSite( $this->localSiteId );
Please login to merge, or discard this patch.
repo/tests/phpunit/includes/Actions/EditEntityActionTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -52,6 +52,9 @@
 block discarded – undo
52 52
 		$this->assertInstanceOf( SubmitEntityAction::class, $action );
53 53
 	}
54 54
 
55
+	/**
56
+	 * @param string $key
57
+	 */
55 58
 	protected function adjustRevisionParam( $key, array &$params, WikiPage $page ) {
56 59
 		if ( !isset( $params[$key] ) || ( is_int( $params[$key] ) && $params[$key] > 0 ) ) {
57 60
 			return;
Please login to merge, or discard this patch.
view/tests/phpunit/SimpleEntityTermsViewTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -79,6 +79,9 @@
 block discarded – undo
79 79
 		);
80 80
 	}
81 81
 
82
+	/**
83
+	 * @param string $term
84
+	 */
82 85
 	private function getTermList( $term, $languageCode = 'en' ) {
83 86
 		return new TermList( [ new Term( $languageCode, $term ) ] );
84 87
 	}
Please login to merge, or discard this patch.
view/src/StatementHtmlGenerator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -142,6 +142,9 @@
 block discarded – undo
142 142
 		return $this->wrapInListview( $referencesHtml );
143 143
 	}
144 144
 
145
+	/**
146
+	 * @param string $listviewContent
147
+	 */
145 148
 	private function wrapInListview( $listviewContent ) {
146 149
 		if ( $listviewContent !== '' ) {
147 150
 			return $this->templateFactory->render( 'wikibase-listview', $listviewContent );
Please login to merge, or discard this patch.
lib/includes/LanguageFallbackChainFactory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -229,6 +229,9 @@
 block discarded – undo
229 229
 		return $languageFallbackChain;
230 230
 	}
231 231
 
232
+	/**
233
+	 * @param string $languageCode
234
+	 */
232 235
 	private function getBabel( $languageCode, $user ) {
233 236
 		$babel = [];
234 237
 
Please login to merge, or discard this patch.