Completed
Push — master ( c81f6c...1650a0 )
by mw
07:33
created
src/Outline/ListTreeBuilder.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,6 @@  discard block
 block discarded – undo
43 43
 	/**
44 44
 	 * @since 3.1
45 45
 	 *
46
-	 * @param OutlineTree $tree
47 46
 	 *
48 47
 	 * @return string
49 48
 	 */
@@ -51,6 +50,9 @@  discard block
 block discarded – undo
51 50
 		return $this->tree( $outlineTree );
52 51
 	}
53 52
 
53
+	/**
54
+	 * @param OutlineTree $outline_tree
55
+	 */
54 56
 	private function tree( $outline_tree, $level = 0 ) {
55 57
 		$text = "";
56 58
 
Please login to merge, or discard this patch.
src/Outline/TemplateBuilder.php 1 patch
Doc Comments   +9 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,6 @@  discard block
 block discarded – undo
47 47
 	/**
48 48
 	 * @since 3.1
49 49
 	 *
50
-	 * @param OutlineTree $tree
51 50
 	 *
52 51
 	 * @return string
53 52
 	 */
@@ -57,6 +56,9 @@  discard block
 block discarded – undo
57 56
 		return $this->template;
58 57
 	}
59 58
 
59
+	/**
60
+	 * @param OutlineTree $outlineTree
61
+	 */
60 62
 	private function tree( $outlineTree, $level = 0 ) {
61 63
 
62 64
 		if ( $outlineTree->items !== null ) {
@@ -116,6 +118,9 @@  discard block
 block discarded – undo
116 118
 		return "<div class='" . $this->params['template'] . "-item'>" . $template . '</div>';
117 119
 	}
118 120
 
121
+	/**
122
+	 * @param Linker|null $linker
123
+	 */
119 124
 	private function itemText( $dv, $linker, $printRequest, &$first_col ) {
120 125
 
121 126
 		if ( $first_col && $printRequest->isMode( PrintRequest::PRINT_THIS ) ) {
@@ -141,6 +146,9 @@  discard block
 block discarded – undo
141 146
 		return $this->parameter( $printRequest->getLabel(), $text );
142 147
 	}
143 148
 
149
+	/**
150
+	 * @param string $v
151
+	 */
144 152
 	private function open( $v ) {
145 153
 		return "{{" . $v;
146 154
 	}
Please login to merge, or discard this patch.