Code Duplication    Length = 3-3 lines in 2 locations

system/Inji/Model.php 2 locations

@@ 612-614 (lines=3) @@
609
            }
610
        } else {
611
            $cols = static::cols();
612
            if (!empty(static::$labels[$info['col']])) {
613
                $info['label'] = static::$labels[$info['col']];
614
            }
615
616
            if (isset(static::$cols[$info['col']])) {
617
                $info['colParams'] = static::$cols[$info['col']];
@@ 628-630 (lines=3) @@
625
            }
626
            $info['modelName'] = get_called_class();
627
        }
628
        if (!empty(static::$labels[$info['rawCol']])) {
629
            $info['label'] = static::$labels[$info['rawCol']];
630
        }
631
        return $info;
632
    }
633