| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | class AjaxInstallController extends AbstractController |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @var StageHelper |
||
| 28 | */ |
||
| 29 | private $stageHelper; |
||
| 30 | |||
| 31 | public function __construct(ContainerInterface $container) |
||
| 32 | { |
||
| 33 | parent::__construct($container); |
||
| 34 | $this->stageHelper = $container->get(StageHelper::class); |
||
| 35 | } |
||
| 36 | |||
| 37 | public function ajaxAction(Request $request): JsonResponse |
||
| 43 | } |
||
| 44 | } |
||
| 45 |