mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
84 lines
1.7 KiB
PHP
Executable File
84 lines
1.7 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package phpOMS\Api\Payment
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Api\Payment;
|
|
|
|
/**
|
|
* Strip generator.
|
|
*
|
|
* @package phpOMS\Api\Payment
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
final class Stripe extends PaymentAbstract
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function createCharge(int $customer, Charge $charge) : void {}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function refundCharge(int $customer, Charge $charge) : void {}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function listCharges(int $customer, \DateTime $start, \DateTime $end) : void {}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function addPaymentMethod(int $customer, mixed $paymentMethod) : void
|
|
{
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function removePaymentMethod(int $customer, mixed $paymentMethod) : void {}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function modifyPaymentMethod(int $customer, mixed $paymentMethod) : void {}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function listPaymentMethods(int $customer) : void {}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function addSubscription(int $customer, mixed $subscription) : void {}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function removeSubscription(int $customer, mixed $subscription) : void {}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function modifySubscription(int $customer, mixed $subscription) : void {}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function listSubscriptions(int $customer) : void {}
|
|
}
|