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

Esse commit está contido em:
Hypolite Petovan 2018-11-22 22:21:57 -05:00
commit 6fd294aac5
1 arquivos alterados com 4 adições e 2 exclusões

Ver arquivo

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