1 | <?php |
||
15 | class PaypalService |
||
16 | { |
||
17 | /** |
||
18 | * @var IdentityService |
||
19 | */ |
||
20 | protected $identityService; |
||
21 | |||
22 | /** |
||
23 | * @var PaymentService |
||
24 | */ |
||
25 | protected $paymentService; |
||
26 | |||
27 | /** |
||
28 | * @var PayoutService |
||
29 | */ |
||
30 | protected $payoutService; |
||
31 | |||
32 | /** |
||
33 | * @var ReportingService |
||
34 | */ |
||
35 | protected $reportingService; |
||
36 | |||
37 | /** |
||
38 | * @var InvoiceService |
||
39 | */ |
||
40 | protected $invoiceService; |
||
41 | |||
42 | /** |
||
43 | * PaypalService constructor. |
||
44 | * @param IdentityService $identityService |
||
45 | * @param PaymentService $paymentService |
||
46 | * @param PayoutService $payoutService |
||
47 | * @param ReportingService $reportingService |
||
48 | * @param InvoiceService $invoiceService |
||
49 | */ |
||
50 | public function __construct( |
||
63 | |||
64 | /** |
||
65 | * @return IdentityService |
||
66 | */ |
||
67 | public function getIdentityService(): IdentityService |
||
71 | |||
72 | /** |
||
73 | * @return PaymentService |
||
74 | */ |
||
75 | public function getPaymentService(): PaymentService |
||
79 | |||
80 | /** |
||
81 | * @return PayoutService |
||
82 | */ |
||
83 | public function getPayoutService(): PayoutService |
||
87 | |||
88 | /** |
||
89 | * @return ReportingService |
||
90 | */ |
||
91 | public function getReportingService(): ReportingService |
||
95 | |||
96 | /** |
||
97 | * @return InvoiceService |
||
98 | */ |
||
99 | public function getInvoiceService(): InvoiceService |
||
103 | } |
||
104 |