moved website outside of panel folder
This commit is contained in:
parent
92ac778956
commit
08f07dca97
10328 changed files with 90 additions and 501 deletions
|
|
@ -1,25 +0,0 @@
|
|||
<?php
|
||||
require_once __DIR__ . '/../classes/PaymentGatewayInterface.php';
|
||||
|
||||
/**
|
||||
* Stripe payment gateway stub.
|
||||
* Implement this class when Stripe support is needed.
|
||||
*/
|
||||
class StripeGateway implements PaymentGatewayInterface
|
||||
{
|
||||
public function getName(): string { return 'stripe'; }
|
||||
|
||||
public function createPayment(array $params): array
|
||||
{
|
||||
return ['success' => false, 'error' => 'stripe_not_implemented'];
|
||||
}
|
||||
|
||||
public function handleCallback(array $params): array
|
||||
{
|
||||
return ['success' => false, 'error' => 'stripe_not_implemented'];
|
||||
}
|
||||
|
||||
public function verifyPayment(array $payload): bool { return false; }
|
||||
|
||||
public function getTransactionId(array $captureResult): ?string { return null; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue