From 85ec2775e9302d2416d2594c36d9d1264a211f58 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Fri, 2 Feb 2018 08:08:07 -0500 Subject: [PATCH] Remove conditional declaration of OAuthException --- library/OAuth1.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/library/OAuth1.php b/library/OAuth1.php index a2097be06..c537f2b25 100644 --- a/library/OAuth1.php +++ b/library/OAuth1.php @@ -3,10 +3,8 @@ /* Generic exception class */ -if (!class_exists('OAuthException')) { - class OAuthException extends Exception { - // pass - } +class OAuthException extends Exception { + // pass } class OAuthConsumer {