Api\StarterKit\Enums\Enum::getCode PHP Method

getCode() public static method

public static getCode ( $label, $isLower = false )
    public static function getCode($label, $isLower = false)
    {
        $class = new ReflectionClass(get_called_class());
        $constants = $class->getConstants();
        if ($isLower) {
            return $constants[strtoupper($label)];
        }
        return $constants[$label];
    }