Completed
Push — master ( 5d1976...30add5 )
by mw
13s
created
includes/datavalues/SMW_DV_Property.php 1 patch
Doc Comments   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 	 * the provided name is not allowed. An object is returned
71 71
 	 * in any case.
72 72
 	 *
73
-	 * @param string $propertyName
73
+	 * @param string $propertyLabel
74 74
 	 *
75 75
 	 * @return SMWPropertyValue
76 76
 	 */
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 	/**
191 191
 	 * @since 2.4
192 192
 	 *
193
-	 * @param array $linkAttributes
193
+	 * @param array $setLinkAttributes
194 194
 	 */
195 195
 	public function setLinkAttributes( array $setLinkAttributes ) {
196 196
 		$this->linkAttributes = $linkAttributes;
@@ -214,6 +214,9 @@  discard block
 block discarded – undo
214 214
 		}
215 215
 	}
216 216
 
217
+	/**
218
+	 * @param boolean $isinverse
219
+	 */
217 220
 	public function setInverse( $isinverse ) {
218 221
 		return $this->m_dataitem = new DIProperty( $this->m_dataitem->getKey(), ( $isinverse == true ) );
219 222
 	}
@@ -352,6 +355,7 @@  discard block
 block discarded – undo
352 355
 
353 356
 	/**
354 357
 	 * Create special highlighting for hinting at special properties.
358
+	 * @param string $text
355 359
 	 */
356 360
 	protected function highlightText( $text, $linker = null ) {
357 361
 
Please login to merge, or discard this patch.
src/DataValues/MonolingualTextValue.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,6 @@  discard block
 block discarded – undo
72 72
 	 * @see DataValue::parseUserValue
73 73
 	 * @note called by DataValue::setUserValue
74 74
 	 *
75
-	 * @param string $value
76 75
 	 */
77 76
 	protected function parseUserValue( $userValue ) {
78 77
 
@@ -248,6 +247,7 @@  discard block
 block discarded – undo
248 247
 	/**
249 248
 	 * @since 2.4
250 249
 	 *
250
+	 * @param string $languageCode
251 251
 	 * @return DataValue|null
252 252
 	 */
253 253
 	public function getTextValueByLanguage( $languageCode ) {
@@ -280,6 +280,9 @@  discard block
 block discarded – undo
280 280
 		return $dataValue;
281 281
 	}
282 282
 
283
+	/**
284
+	 * @param string $value
285
+	 */
283 286
 	private function newContainerSemanticData( $value ) {
284 287
 
285 288
 		if ( $this->m_contextPage === null ) {
Please login to merge, or discard this patch.