This commit is contained in:
Bobselp 2016-01-17 15:50:34 +01:00
parent c5db707e69
commit 55c8df8312

View File

@ -132,6 +132,8 @@ class OAuthException extends \Exception
$authScheme = 'Bearer';
} elseif (strpos($authHeader, 'Basic') === 0) {
$authScheme = 'Basic';
} elseif (strpos($authHeader, 'MAC') === 0) {
$authScheme = 'MAC';
}
}
}