GenTux\Jwt\GetsJwtToken::getAuthHeaderKey PHP Method

getAuthHeaderKey() private method

This can be customized by setting the JWT_HEADER env variable. It will default to using Authorization if not defined.
private getAuthHeaderKey ( ) : string
return string
    private function getAuthHeaderKey()
    {
        return getenv('JWT_HEADER') ?: 'Authorization';
    }