1 | <?php |
||
12 | class BraintreeService |
||
13 | { |
||
14 | /** |
||
15 | * @var PaymentService |
||
16 | */ |
||
17 | protected $paymentService; |
||
18 | |||
19 | /** |
||
20 | * @var CustomerService |
||
21 | */ |
||
22 | protected $customerService; |
||
23 | |||
24 | /** |
||
25 | * PaypalService constructor. |
||
26 | * @param PaymentService $paymentService |
||
27 | * @param CustomerService $customerService |
||
28 | */ |
||
29 | public function __construct( |
||
36 | |||
37 | /** |
||
38 | * @return PaymentService |
||
39 | */ |
||
40 | public function getPaymentService(): PaymentService |
||
44 | |||
45 | /** |
||
46 | * @return CustomerService |
||
47 | */ |
||
48 | public function getCustomerService(): CustomerService |
||
52 | } |
||
53 |