1 | <?php |
||
14 | abstract class AbstractPaypalService |
||
15 | { |
||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $clientId; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $clientSecret; |
||
25 | |||
26 | /** |
||
27 | * @var ApiContext |
||
28 | */ |
||
29 | protected $apiContext; |
||
30 | |||
31 | /** |
||
32 | * @var LoggerInterface |
||
33 | */ |
||
34 | protected $logger; |
||
35 | |||
36 | /** |
||
37 | * PaypalService constructor. |
||
38 | * @param string $clientId |
||
39 | * @param string $clientSecret |
||
40 | * @param LoggerInterface $logger |
||
41 | * @param SessionService $sessionService |
||
42 | */ |
||
43 | public function __construct( |
||
58 | } |
||
59 |