Completed
Pull Request — master (#550)
by Richard
13:31
created
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.