Completed
Push — master ( 71c033...f73bc6 )
by mw
34:22
created
includes/datavalues/SMW_DV_String.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 	/**
35 35
 	 * @see DataValue::loadDataItem
36 36
 	 *
37
-	 * @param SMWDataItem $dataitem
37
+	 * @param SMWDataItem $dataItem
38 38
 	 *
39 39
 	 * @return boolean
40 40
 	 */
@@ -96,6 +96,9 @@  discard block
 block discarded – undo
96 96
 		return $this->getDataValueFormatter()->format( DataValueFormatter::VALUE );
97 97
 	}
98 98
 
99
+	/**
100
+	 * @param integer $length
101
+	 */
99 102
 	public function getWikiValueForLengthOf( $length ) {
100 103
 
101 104
 		if ( mb_strlen( $this->getWikiValue() ) > $length ) {
Please login to merge, or discard this patch.
src/DataValues/InfoLinksProvider.php 2 patches
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,7 +83,6 @@  discard block
 block discarded – undo
83 83
 	 *
84 84
 	 * @since 2.4
85 85
 	 *
86
-	 * @param Infolink $link
87 86
 	 */
88 87
 	public function addInfolink( Infolink $infoLink ) {
89 88
 		$this->infoLinks[] = $infoLink;
@@ -92,7 +91,7 @@  discard block
 block discarded – undo
92 91
 	/**
93 92
 	 * @since 2.4
94 93
 	 *
95
-	 * @param array|false $serviceLinkParameters
94
+	 * @param boolean $serviceLinkParameters
96 95
 	 */
97 96
 	public function setServiceLinkParameters( $serviceLinkParameters ) {
98 97
 		$this->serviceLinkParameters = $serviceLinkParameters;
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,12 +3,11 @@
 block discarded – undo
3 3
 namespace SMW\DataValues;
4 4
 
5 5
 use SMWInfolink as Infolink;
6
-use SMWDataValue  as DataValue;
6
+use SMWDataValue as DataValue;
7 7
 use SMW\ApplicationFactory;
8 8
 use SMW\InTextAnnotationParser;
9 9
 use SMW\DIProperty;
10 10
 use SMW\Message;
11
-use SMWStringValue as StringValue;
12 11
 use SMWDIBlob as DIBlob;
13 12
 
14 13
 /**
Please login to merge, or discard this patch.