Completed
Push — master ( 63546b...ea4d88 )
by mw
08:24
created
formats/Gantt/src/GanttTask.php 1 patch
Doc Comments   +18 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@  discard block
 block discarded – undo
22 22
 	private $mEndDate;
23 23
 
24 24
 
25
+	/**
26
+	 * @param string $title
27
+	 */
25 28
 	public function setTitle( $title ) {
26 29
 		$this->mTitle = $title;
27 30
 	}
@@ -30,6 +33,9 @@  discard block
 block discarded – undo
30 33
 		return $this->mTitle;
31 34
 	}
32 35
 
36
+	/**
37
+	 * @param string $id
38
+	 */
33 39
 	public function setID( $id ) {
34 40
 		$this->mID = $id;
35 41
 	}
@@ -38,10 +44,16 @@  discard block
 block discarded – undo
38 44
 		return $this->mID;
39 45
 	}
40 46
 
47
+	/**
48
+	 * @param string $status
49
+	 */
41 50
 	public function setStatus($status){
42 51
 		$this->mStatus = $this->mStatus . $status . ', ';
43 52
 	}
44 53
 
54
+	/**
55
+	 * @param string $priority
56
+	 */
45 57
 	public function setPriority($priority){
46 58
 		$this->mPriority = $this->mPriority . $priority . ', ';
47 59
 	}
@@ -81,6 +93,9 @@  discard block
 block discarded – undo
81 93
 		return $this->mPriority;
82 94
 	}
83 95
 
96
+	/**
97
+	 * @param string $startDate
98
+	 */
84 99
 	public function setStartDate( $startDate ) {
85 100
 		$this->mStartDate = $startDate;
86 101
 	}
@@ -89,6 +104,9 @@  discard block
 block discarded – undo
89 104
 		return $this->mStartDate;
90 105
 	}
91 106
 
107
+	/**
108
+	 * @param string $endDate
109
+	 */
92 110
 	public function setEndDate( $endDate ) {
93 111
 		$this->mEndDate = $endDate;
94 112
 	}
Please login to merge, or discard this patch.
formats/media/MediaPlayer.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,6 @@
 block discarded – undo
200 200
 	 * @since 1.9
201 201
 	 *
202 202
 	 * @param string $label
203
-	 * @param integer $type
204 203
 	 * @param SMWDataValue $dataValue
205 204
 	 * @param string $mediaType
206 205
 	 * @param string $mimeType
Please login to merge, or discard this patch.
src/vCard/vCardFileExportPrinter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -236,6 +236,9 @@
 block discarded – undo
236 236
 		return true;
237 237
 	}
238 238
 
239
+	/**
240
+	 * @param vCard $vCard
241
+	 */
239 242
 	private function mapField( $field, $vCard, &$tels, &$addresses, &$emails ) {
240 243
 
241 244
 		$printRequest = $field->getPrintRequest();
Please login to merge, or discard this patch.
src/BibTex/Item.php 2 patches
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,6 @@  discard block
 block discarded – undo
68 68
 	/**
69 69
 	 * @since 3.1
70 70
 	 *
71
-	 * @param callable $compoundLabelCallback
72 71
 	 */
73 72
 	public function setFormatterCallback( callable $formatterCallback ) {
74 73
 		$this->formatterCallback = $formatterCallback;
@@ -77,7 +76,7 @@  discard block
 block discarded – undo
77 76
 	/**
78 77
 	 * @since 3.1
79 78
 	 *
80
-	 * @param $key
79
+	 * @param string $key
81 80
 	 * @param string $text
82 81
 	 *
83 82
 	 * @return string
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace SRF\BibTex;
4 4
 
5
-use SMWDataValue as DataValue;
6
-
7 5
 /**
8 6
  * @see http://www.semantic-mediawiki.org/wiki/BibTex
9 7
  *
Please login to merge, or discard this patch.
src/BibTex/BibTexFileExportPrinter.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,7 +95,6 @@  discard block
 block discarded – undo
95 95
 	/**
96 96
 	 * @since 3.1
97 97
 	 *
98
-	 * @param array $list
99 98
 	 *
100 99
 	 * @return string
101 100
 	 */
@@ -141,7 +140,7 @@  discard block
 block discarded – undo
141 140
 	 *
142 141
 	 * @param $row array of SMWResultArray
143 142
 	 *
144
-	 * @return bibTexItem
143
+	 * @return Item
145 144
 	 */
146 145
 	private function newItem( array /* of SMWResultArray */ $row ) {
147 146
 
Please login to merge, or discard this patch.