Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class AbstractController extends SymfonyAbstractController |
||
14 | { |
||
15 | /** |
||
16 | * @var BraintreeService |
||
17 | */ |
||
18 | protected BraintreeService $braintreeService; |
||
19 | |||
20 | /** |
||
21 | * @var WebhookService |
||
22 | */ |
||
23 | protected WebhookService $webhookService; |
||
24 | |||
25 | /** |
||
26 | * DefaultController constructor. |
||
27 | * @param BraintreeService $braintreeService |
||
28 | * @param WebhookService $webhookService |
||
29 | */ |
||
30 | public function __construct(BraintreeService $braintreeService, WebhookService $webhookService) |
||
36 |