| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class AbstractController extends SymfonyAbstractController |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var HyperwalletService |
||
| 16 | */ |
||
| 17 | protected $hyperwalletService; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * DefaultController constructor. |
||
| 21 | * @param HyperwalletService $hyperwalletService |
||
| 22 | */ |
||
| 23 | public function __construct(HyperwalletService $hyperwalletService) |
||
| 28 |