Code Duplication    Length = 3-3 lines in 2 locations

system/Inji/Model.php 2 locations

@@ 568-570 (lines=3) @@
565
            }
566
        } else {
567
            $cols = static::cols();
568
            if (!empty(static::$labels[$info['col']])) {
569
                $info['label'] = static::$labels[$info['col']];
570
            }
571
572
            if (isset(static::$cols[$info['col']])) {
573
                $info['colParams'] = static::$cols[$info['col']];
@@ 584-586 (lines=3) @@
581
            }
582
            $info['modelName'] = get_called_class();
583
        }
584
        if (!empty(static::$labels[$info['rawCol']])) {
585
            $info['label'] = static::$labels[$info['rawCol']];
586
        }
587
        return $info;
588
    }
589