Protect OAuthException declaration to avoid conflict with php-pecl-oauth

This commit is contained in:
Hypolite Petovan 2018-11-22 22:21:57 -05:00
parent 540321d0aa
commit 6fd294aac5
1 changed files with 4 additions and 2 deletions

View File

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