| 1 | <?php |
||
| 12 | class AbstractController extends SymfonyAbstractController |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var BraintreeService |
||
| 16 | */ |
||
| 17 | protected $braintreeService; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * DefaultController constructor. |
||
| 21 | * @param BraintreeService $braintreeService |
||
| 22 | */ |
||
| 23 | public function __construct(BraintreeService $braintreeService) |
||
| 27 | } |
||
| 28 |