1 | <?php declare(strict_types=1); |
||
5 | abstract class ActionAbstract |
||
6 | { |
||
7 | protected $merchantParams; |
||
8 | protected $action; |
||
9 | protected $queryParameters; |
||
10 | protected $headers = []; |
||
11 | |||
12 | public function __construct(array $merchantParams) |
||
16 | |||
17 | public function getAction() |
||
21 | |||
22 | public function getHeaders() |
||
26 | |||
27 | public function getQueryParams() |
||
31 | } |
||
32 |