1 | <?php |
||
11 | class BraintreeService |
||
12 | { |
||
13 | /** |
||
14 | * @var PaymentService |
||
15 | */ |
||
16 | protected $paymentService; |
||
17 | |||
18 | /** |
||
19 | * PaypalService constructor. |
||
20 | * @param PaymentService $paymentService |
||
21 | */ |
||
22 | public function __construct( |
||
27 | |||
28 | /** |
||
29 | * @return PaymentService |
||
30 | */ |
||
31 | public function getPaymentService(): PaymentService |
||
35 | } |
||
36 |