Code Duplication    Length = 5-5 lines in 2 locations

htdocs/class/libraries/vendor/kint-php/kint/src/Renderer/Rich.php 1 location

@@ 380-384 (lines=5) @@
377
        if (isset($this->previous_caller['type'])) {
378
            $caller .= $this->previous_caller['type'];
379
        }
380
        if (isset($this->previous_caller['function'])
381
            && !in_array($this->previous_caller['function'], array('include', 'include_once', 'require', 'require_once'))
382
        ) {
383
            $caller .= $this->previous_caller['function'].'()';
384
        }
385
386
        if ($caller) {
387
            $output .= ' ['.$caller.']';

htdocs/class/libraries/vendor/kint-php/kint/src/Renderer/Text.php 1 location

@@ 265-269 (lines=5) @@
262
        if (isset($this->previous_caller['type'])) {
263
            $caller .= $this->previous_caller['type'];
264
        }
265
        if (isset($this->previous_caller['function'])
266
            && !in_array($this->previous_caller['function'], array('include', 'include_once', 'require', 'require_once'))
267
        ) {
268
            $caller .= $this->previous_caller['function'].'()';
269
        }
270
271
        if ($caller) {
272
            $output .= ' ['.$caller.']';