Completed
Pull Request — master (#297)
by
unknown
07:01
created
formats/calendar/SRFC_HistoricalDate.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@
 block discarded – undo
26 26
 
27 27
 	protected $m_date; // the Julian day
28 28
 
29
+	/**
30
+	 * @param integer $day
31
+	 */
29 32
 	function create( $year, $month, $day ) {
30 33
 		if ( $year < 1582 ||
31 34
 			( $year == 1582 && ( $month < 10 || ( $month == 10 && $day < 15 ) ) ) ) {
Please login to merge, or discard this patch.
formats/dygraphs/SRF_Dygraphs.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
 	 * @since 1.8
52 52
 	 *
53 53
 	 * @param SMWQueryResult $result
54
-	 * @param $outputMode
54
+	 * @param integer $outputMode
55 55
 	 *
56 56
 	 * @return array
57 57
 	 */
Please login to merge, or discard this patch.
formats/Exhibit/SRF_Exhibit.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -30,6 +30,10 @@
 block discarded – undo
30 30
 	}
31 31
 
32 32
 	// /Tries to determine the namespace in the event it got lost
33
+
34
+	/**
35
+	 * @param SMWQueryResult $res
36
+	 */
33 37
 	protected function determineNamespace( $res ) {
34 38
 		$row = $res->getNext();
35 39
 		if ( $row != null ) {
Please login to merge, or discard this patch.
formats/jqplot/SRF_jqPlot.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,6 @@
 block discarded – undo
136 136
 	 *
137 137
 	 * @since 1.8
138 138
 	 *
139
-	 * @param array $data
140 139
 	 * @param $minValue
141 140
 	 * @param $maxValue
142 141
 	 *
Please login to merge, or discard this patch.
formats/jqplot/SRF_jqPlotSeries.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,6 @@  discard block
 block discarded – undo
45 45
 	 *
46 46
 	 * @since 1.8
47 47
 	 *
48
-	 * @param SMWQueryResult $result
49 48
 	 * @param $outputMode
50 49
 	 *
51 50
 	 * @return array
@@ -250,7 +249,6 @@  discard block
 block discarded – undo
250 249
 	 *
251 250
 	 * @since 1.8
252 251
 	 *
253
-	 * @param array $data
254 252
 	 *
255 253
 	 * @return string
256 254
 	 */
Please login to merge, or discard this patch.
formats/math/SRF_Math.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -38,6 +38,7 @@
 block discarded – undo
38 38
 
39 39
 	/**
40 40
 	 * @see SMWResultPrinter::getResultText()
41
+	 * @param integer $outputmode
41 42
 	 */
42 43
 	protected function getResultText( SMWQueryResult $res, $outputmode ) {
43 44
 		$numbers = $this->getNumbers( $res );
Please login to merge, or discard this patch.
formats/media/MediaPlayer.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use SMWDataValue;
9 9
 use SMWOutputs;
10 10
 use SRFUtils;
11
-
12 11
 use FormatJson;
13 12
 use Skin;
14 13
 use Html;
Please login to merge, or discard this patch.
formats/outline/SRF_Outline.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -47,6 +47,9 @@  discard block
 block discarded – undo
47 47
 		$this->mUnsortedItems = $items;
48 48
 	}
49 49
 
50
+	/**
51
+	 * @param SRFOutlineItem $item
52
+	 */
50 53
 	function addItem( $item ) {
51 54
 		$this->mUnsortedItems[] = $item;
52 55
 	}
@@ -135,6 +138,9 @@  discard block
 block discarded – undo
135 138
 		return $result;
136 139
 	}
137 140
 
141
+	/**
142
+	 * @param SRFOutlineTree $outline_tree
143
+	 */
138 144
 	function printTree( $outline_tree, $level = 0 ) {
139 145
 		$text = "";
140 146
 		if ( ! is_null( $outline_tree->mUnsortedItems ) ) {
Please login to merge, or discard this patch.
formats/widget/SRF_ListWidget.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,6 @@
 block discarded – undo
28 28
 	 * @see SMWResultPrinter::getResultText
29 29
 	 *
30 30
 	 * @param SMWQueryResult $res
31
-	 * @param array $params
32 31
 	 * @param $outputmode
33 32
 	 *
34 33
 	 * @return string
Please login to merge, or discard this patch.