Code Duplication    Length = 3-3 lines in 4 locations

htdocs/class/libraries/vendor/kint-php/kint/src/Renderer/Rich/Plugin.php 2 locations

@@ 50-52 (lines=3) @@
47
            $header .= '<var>'.$s.'</var> ';
48
        }
49
50
        if (($s = $o->getSize()) !== null) {
51
            $header .= '('.$this->renderer->escape($s).') ';
52
        }
53
54
        $header .= $content;
55
@@ 102-104 (lines=3) @@
99
            $header .= '<var>'.$s.'</var> ';
100
        }
101
102
        if (($s = $o->getSize()) !== null) {
103
            $header .= '('.Kint_Object_Blob::escape($s).') ';
104
        }
105
106
        $header .= $content;
107

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

@@ 33-35 (lines=3) @@
30
            $header .= '<var>'.$this->renderer->escape($s).'</var> ';
31
        }
32
33
        if (($s = $o->getSize()) !== null) {
34
            $header .= '('.$this->renderer->escape($s).') ';
35
        }
36
37
        if ($s === null && $c = $o->getRepresentation('contents')) {
38
            $c = reset($c->contents);

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

@@ 153-155 (lines=3) @@
150
            $output[] = $this->colorType($this->escape($s));
151
        }
152
153
        if (($s = $o->getSize()) !== null) {
154
            $output[] = '('.$this->escape($s).')';
155
        }
156
157
        if (($s = $o->getValueShort()) !== null) {
158
            if (self::$strlen_max && Kint_Object_Blob::strlen($s) > self::$strlen_max) {