Code Duplication    Length = 3-3 lines in 2 locations

system/Inji/Model.php 2 locations

@@ 577-579 (lines=3) @@
574
            }
575
        } else {
576
            $cols = static::cols();
577
            if (!empty(static::$labels[$info['col']])) {
578
                $info['label'] = static::$labels[$info['col']];
579
            }
580
581
            if (isset(static::$cols[$info['col']])) {
582
                $info['colParams'] = static::$cols[$info['col']];
@@ 593-595 (lines=3) @@
590
            }
591
            $info['modelName'] = get_called_class();
592
        }
593
        if (!empty(static::$labels[$info['rawCol']])) {
594
            $info['label'] = static::$labels[$info['rawCol']];
595
        }
596
        return $info;
597
    }
598