diff options
Diffstat (limited to 'vendor/stripe/stripe-php/lib/Exception/ExceptionInterface.php')
-rw-r--r-- | vendor/stripe/stripe-php/lib/Exception/ExceptionInterface.php | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/vendor/stripe/stripe-php/lib/Exception/ExceptionInterface.php b/vendor/stripe/stripe-php/lib/Exception/ExceptionInterface.php index c84f37d..a0ccea9 100644 --- a/vendor/stripe/stripe-php/lib/Exception/ExceptionInterface.php +++ b/vendor/stripe/stripe-php/lib/Exception/ExceptionInterface.php @@ -1,22 +1,22 @@ -<?php - -namespace Stripe\Exception; - -// TODO: remove this check once we drop support for PHP 5 -if (\interface_exists(\Throwable::class, false)) { - /** - * The base interface for all Stripe exceptions. - */ - interface ExceptionInterface extends \Throwable - { - } -} else { - /** - * The base interface for all Stripe exceptions. - */ - // phpcs:disable PSR1.Classes.ClassDeclaration.MultipleClasses - interface ExceptionInterface - { - } - // phpcs:enable -} +<?php
+
+namespace Stripe\Exception;
+
+// TODO: remove this check once we drop support for PHP 5
+if (\interface_exists(\Throwable::class, false)) {
+ /**
+ * The base interface for all Stripe exceptions.
+ */
+ interface ExceptionInterface extends \Throwable
+ {
+ }
+} else {
+ /**
+ * The base interface for all Stripe exceptions.
+ */
+ // phpcs:disable PSR1.Classes.ClassDeclaration.MultipleClasses
+ interface ExceptionInterface
+ {
+ }
+ // phpcs:enable
+}
|