Merge pull request #6188 from MrPetovan/bug/5928-protect-oauthexception

Protect OAuthException declaration to avoid conflict with php-pecl-oauth
This commit is contained in:
Michael Vogel
2018-11-23 07:09:49 +01:00
committed by GitHub

View File

@@ -3,8 +3,10 @@
/* Generic exception class
*/
class OAuthException extends Exception {
// pass
if (!class_exists('OAuthException', false)) {
class OAuthException extends Exception {
// pass
}
}
class OAuthConsumer {