-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAbstractPaymentGateway.php
More file actions
76 lines (66 loc) · 1.82 KB
/
AbstractPaymentGateway.php
File metadata and controls
76 lines (66 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
namespace IDCI\Bundle\PaymentBundle\Gateway;
use IDCI\Bundle\PaymentBundle\Model\GatewayResponse;
use IDCI\Bundle\PaymentBundle\Model\PaymentGatewayConfigurationInterface;
use IDCI\Bundle\PaymentBundle\Model\Transaction;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
use Twig\Environment;
abstract class AbstractPaymentGateway implements PaymentGatewayInterface
{
/**
* @var Environment
*/
protected $templating;
/**
* @var EventDispatcherInterface
*/
protected $dispatcher;
public function __construct(
Environment $templating,
EventDispatcherInterface $dispatcher
) {
$this->templating = $templating;
$this->dispatcher = $dispatcher;
}
/**
* {@inheritdoc}
*/
abstract public function initialize(
PaymentGatewayConfigurationInterface $paymentGatewayConfiguration,
Transaction $transaction,
array $options = []
): array;
/**
* {@inheritdoc}
*/
abstract public function buildHTMLView(
PaymentGatewayConfigurationInterface $paymentGatewayConfiguration,
Transaction $transaction,
array $options = []
): string;
/**
* {@inheritdoc}
*/
abstract public function getReturnResponse(
Request $request,
PaymentGatewayConfigurationInterface $paymentGatewayConfiguration
): GatewayResponse;
/**
* {@inheritdoc}
*/
abstract public function getCallbackResponse(
Request $request,
PaymentGatewayConfigurationInterface $paymentGatewayConfiguration
): GatewayResponse;
/**
* {@inheritdoc}
*/
public static function getParameterNames(): ?array
{
return [
'callback_url',
'return_url',
];
}
}