Code Duplication    Length = 3-3 lines in 3 locations

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

@@ 150-152 (lines=3) @@
147
148
        $out .= '>';
149
150
        if (self::$access_paths && $o->depth > 0 && $ap = $o->getAccessPath()) {
151
            $out .= '<span class="kint-access-path-trigger" title="Show access path">&rlarr;</span>';
152
        }
153
154
        if ($has_children) {
155
            $out .= '<span class="kint-popup-trigger" title="Open in new window">&rarr;</span><nav></nav>';

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

@@ 22-24 (lines=3) @@
19
    {
20
        $header = '<dt class="kint-parent kint-locked">';
21
22
        if (Kint_Renderer_Rich::$access_paths && $o->depth > 0 && $ap = $o->getAccessPath()) {
23
            $header .= '<span class="kint-access-path-trigger" title="Show access path">&rlarr;</span>';
24
        }
25
26
        $header .= '<span class="kint-popup-trigger" title="Open in new window">&rarr;</span><nav></nav>';
27
@@ 74-76 (lines=3) @@
71
72
        $header = '<dt class="kint-parent kint-locked">';
73
74
        if (Kint_Renderer_Rich::$access_paths && $o->depth > 0 && $ap = $o->getAccessPath()) {
75
            $header .= '<span class="kint-access-path-trigger" title="Show access path">&rlarr;</span>';
76
        }
77
78
        $header .= '<span class="kint-popup-trigger" title="Open in new window">&rarr;</span><nav></nav>';
79