Completed
Pull Request — master (#546)
by Richard
09:47
created
htdocs/class/libraries/vendor/kint-php/kint/src/Renderer/Rich.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -131,6 +131,9 @@  discard block
 block discarded – undo
131 131
         return '<dl>'.$header.$children.'</dl>';
132 132
     }
133 133
 
134
+    /**
135
+     * @param boolean $has_children
136
+     */
134 137
     public function renderHeaderWrapper(Kint_Object $o, $has_children, $contents)
135 138
     {
136 139
         $out = '<dt';
@@ -257,6 +260,9 @@  discard block
 block discarded – undo
257 260
         return $output.'</dd>';
258 261
     }
259 262
 
263
+    /**
264
+     * @return string
265
+     */
260 266
     protected function renderTab(Kint_Object $o, Kint_Object_Representation $rep)
261 267
     {
262 268
         if ($plugin = $this->getPlugin(self::$tab_renderers, $rep->hints)) {
Please login to merge, or discard this patch.
htdocs/class/libraries/vendor/kint-php/kint/src/Renderer/Rich/Plugin.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -14,6 +14,7 @@
 block discarded – undo
14 14
      *
15 15
      * This is a placeholder until Kint 3 when it can be renamed to
16 16
      * renderLockedHeader after the deprecated static method is removed
17
+     * @param string $content
17 18
      */
18 19
     public function renderHeaderLocked(Kint_Object $o, $content)
19 20
     {
Please login to merge, or discard this patch.
htdocs/class/libraries/vendor/kint-php/kint/src/Renderer/Text.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -94,6 +94,9 @@
 block discarded – undo
94 94
         return $out;
95 95
     }
96 96
 
97
+    /**
98
+     * @param integer $width
99
+     */
97 100
     public function boxText($text, $width)
98 101
     {
99 102
         if (Kint_Object_Blob::strlen($text) > $width - 4) {
Please login to merge, or discard this patch.
htdocs/class/libraries/vendor/kint-php/kint/src/SourceParser.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -329,6 +329,9 @@
 block discarded – undo
329 329
         return $function_calls;
330 330
     }
331 331
 
332
+    /**
333
+     * @param integer $direction
334
+     */
332 335
     private static function realTokenIndex(array $tokens, $index, $direction)
333 336
     {
334 337
         $index += $direction;
Please login to merge, or discard this patch.