<?phpnamespace App\Controller;use Symfony\Component\HttpFoundation\Response;use App\Service\WidgetService;class WidgetController extends BaseController{ private $_widgetService; public function __construct(WidgetService $widgetService) { $this->_widgetService = $widgetService; } public function presaleWidget() { $data = $this->_widgetService->getPresaleData(); if (!$data || !$data['active']) return new Response(); return $this->render('Widget/presale.html.twig', [ 'data' => $data ]); }}