Code Duplication    Length = 3-3 lines in 2 locations

system/Inji/Model.php 2 locations

@@ 627-629 (lines=3) @@
624
            }
625
        } else {
626
            $cols = static::cols();
627
            if (!empty(static::$labels[$info['col']])) {
628
                $info['label'] = static::$labels[$info['col']];
629
            }
630
631
            if (isset(static::$cols[$info['col']])) {
632
                $info['colParams'] = static::$cols[$info['col']];
@@ 642-644 (lines=3) @@
639
                $info['col'] = static::colPrefix() . $info['col'];
640
            }
641
        }
642
        if (!empty(static::$labels[$info['rawCol']])) {
643
            $info['label'] = static::$labels[$info['rawCol']];
644
        }
645
        return $info;
646
    }
647