src/Controller/BusinessStrategyController.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 BusinessStrategyController extends AbstractController
  7. {
  8.     /**
  9.      * @Route("/business-strategy", name="business_strategy_route")
  10.      * @return Response
  11.      */
  12.     public function aboutAction(): Response
  13.     {
  14.         return $this->render('investor-relations/business-strategy.html.twig');
  15.     }
  16. }