Completed
Push — master ( 195f4f...8c0d0a )
by Jeroen De
05:54
created
src/Outline/TemplateBuilder.php 1 patch
Doc Comments   +6 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->getIntroTemplate() . $this->template . $this->getOutroTemplate();
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 ) ) {
Please login to merge, or discard this patch.