src/Controller/FinancialCalendarController.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class FinancialCalendarController extends AbstractController
  7. {
  8.     /**
  9.      * @Route("/financial-calendar", name="financial_calendar_route")
  10.      * @return Response
  11.      */
  12.     public function aboutAction(): Response
  13.     {
  14.         return $this->render('investor-relations/financial-calendar.html.twig');
  15.     }
  16. }