OTPHP\Factory::getLabel PHP Method

getLabel() private static method

private static getLabel ( string $data ) : string
$data string
return string
    private static function getLabel($data)
    {
        $result = explode(':', rawurldecode(mb_substr($data, 1, null, '8bit')));
        return 2 === count($result) ? $result[1] : $result[0];
    }