diff --git a/Api/Payment/Stripe.php b/Api/Payment/Stripe.php index da0b3527f..62945a4db 100755 --- a/Api/Payment/Stripe.php +++ b/Api/Payment/Stripe.php @@ -24,17 +24,6 @@ namespace phpOMS\Api\Payment; */ final class Stripe extends PaymentAbstract { - /** - * Constructor. - * - * @param string $apiKey Api key - * - * @since 1.0.0 - */ - public function __construct(string $apiKey) - { - } - /** * {@inheritdoc} */ diff --git a/DataStorage/Database/Connection/ConnectionAbstract.php b/DataStorage/Database/Connection/ConnectionAbstract.php index 10a53f8e3..1f3ac7920 100755 --- a/DataStorage/Database/Connection/ConnectionAbstract.php +++ b/DataStorage/Database/Connection/ConnectionAbstract.php @@ -180,6 +180,7 @@ abstract class ConnectionAbstract implements ConnectionInterface */ public function close() : void { + var_dump("closed"); $this->con = new NullPDO(); $this->status = DatabaseStatus::CLOSED; }