Prado\I18N\core\DateFormat::getFunctionName PHP Method

getFunctionName() protected method

For a particular token, get the corresponding function to call.
protected getFunctionName ( $token ) : mixed
return mixed the function if good token, null otherwise.
    protected function getFunctionName($token)
    {
        if (isset($this->tokens[$token[0]])) {
            return $this->tokens[$token[0]];
        }
    }