mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
Updated Client Detail Header for better mobile fit, lots of progress on stripe pay and some other minor updates
This commit is contained in:
26
vendor/stripe-php-7.0.2/lib/Exception/ExceptionInterface.php
vendored
Normal file
26
vendor/stripe-php-7.0.2/lib/Exception/ExceptionInterface.php
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace Stripe\Exception;
|
||||
|
||||
// TODO: remove this check once we drop support for PHP 5
|
||||
if (interface_exists(\Throwable::class)) {
|
||||
/**
|
||||
* The base interface for all Stripe exceptions.
|
||||
*
|
||||
* @package Stripe\Exception
|
||||
*/
|
||||
interface ExceptionInterface extends \Throwable
|
||||
{
|
||||
}
|
||||
} else {
|
||||
/**
|
||||
* The base interface for all Stripe exceptions.
|
||||
*
|
||||
* @package Stripe\Exception
|
||||
*/
|
||||
// phpcs:disable PSR1.Classes.ClassDeclaration.MultipleClasses
|
||||
interface ExceptionInterface
|
||||
{
|
||||
}
|
||||
// phpcs:enable
|
||||
}
|
||||
Reference in New Issue
Block a user