Code Duplication    Length = 3-3 lines in 2 locations

system/Inji/Model.php 2 locations

@@ 572-574 (lines=3) @@
569
            }
570
        } else {
571
            $cols = static::cols();
572
            if (!empty(static::$labels[$info['col']])) {
573
                $info['label'] = static::$labels[$info['col']];
574
            }
575
576
            if (isset(static::$cols[$info['col']])) {
577
                $info['colParams'] = static::$cols[$info['col']];
@@ 588-590 (lines=3) @@
585
            }
586
            $info['modelName'] = get_called_class();
587
        }
588
        if (!empty(static::$labels[$info['rawCol']])) {
589
            $info['label'] = static::$labels[$info['rawCol']];
590
        }
591
        return $info;
592
    }
593