src/Controller/DefaultController.php line 12
<?phpnamespace App\Controller;use App\Helper\ServerStatsHelper;use Symfony\Component\HttpFoundation\Response;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;class DefaultController extends AbstractController{public function index(){// $this->denyAccessUnlessGranted('ROLE_ROOT');// [$block1,$block2] = ServerStatsHelper::getData();// return $this->render('stats/index.html.twig', ['data' => $block1, 'data1' => $block2]);return new Response("HealthCheck=OK");}}