Test Setup Failed
Push — test ( dd7d7c...b3915a )
by Jonathan
03:06
created
src/Renderer/PlainRenderer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -136,6 +136,9 @@
 block discarded – undo
136 136
         return '<a '.$class.'href="'.$this->escape($ideLink).'">'.$path.'</a>';
137 137
     }
138 138
 
139
+    /**
140
+     * @param string $string
141
+     */
139 142
     public function escape($string, $encoding = false)
140 143
     {
141 144
         if ($encoding === false) {
Please login to merge, or discard this patch.
src/Renderer/Renderer.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@  discard block
 block discarded – undo
30 30
         return $this->call_info;
31 31
     }
32 32
 
33
+    /**
34
+     * @param boolean $expand
35
+     */
33 36
     public function setExpand($expand)
34 37
     {
35 38
         $this->expand = $expand;
@@ -40,6 +43,9 @@  discard block
 block discarded – undo
40 43
         return $this->expand;
41 44
     }
42 45
 
46
+    /**
47
+     * @param boolean $mode
48
+     */
43 49
     public function setReturnMode($mode)
44 50
     {
45 51
         $this->return_mode = $mode;
@@ -50,6 +56,9 @@  discard block
 block discarded – undo
50 56
         return $this->return_mode;
51 57
     }
52 58
 
59
+    /**
60
+     * @param boolean $show
61
+     */
53 62
     public function setShowTrace($show)
54 63
     {
55 64
         $this->show_trace = $show;
Please login to merge, or discard this patch.
src/Renderer/RichRenderer.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -128,6 +128,9 @@  discard block
 block discarded – undo
128 128
         return '<dl><dt><var>No argument</var></dt></dl>';
129 129
     }
130 130
 
131
+    /**
132
+     * @param boolean $has_children
133
+     */
131 134
     public function renderHeaderWrapper(BasicObject $o, $has_children, $contents)
132 135
     {
133 136
         $out = '<dt';
@@ -254,6 +257,9 @@  discard block
 block discarded – undo
254 257
         return $output.'</dd>';
255 258
     }
256 259
 
260
+    /**
261
+     * @return string
262
+     */
257 263
     protected function renderTab(BasicObject $o, Representation $rep)
258 264
     {
259 265
         if ($plugin = $this->getPlugin(self::$tab_plugins, $rep->hints)) {
Please login to merge, or discard this patch.
src/Renderer/TextRenderer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -110,6 +110,9 @@
 block discarded – undo
110 110
         }
111 111
     }
112 112
 
113
+    /**
114
+     * @param integer $width
115
+     */
113 116
     public function boxText($text, $width)
114 117
     {
115 118
         if (BlobObject::strlen($text) > $width - 4) {
Please login to merge, or discard this patch.