src/Controller/Content/MarketPlaceController.php line 20

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Content;
  3. use App\Controller\BaseController;
  4. use App\Service\SessionService;
  5. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  6. use Symfony\Component\HttpFoundation\Response;
  7. use Symfony\Component\Routing\Annotation\Route;
  8. use Symfony\Component\HttpFoundation\Request;
  9. class MarketPlaceController extends BaseController
  10. {
  11.     /**
  12.      * @Route("/marketplace", name="marketplace")
  13.      */
  14.     public function marketplace(): Response
  15.     {
  16.         return $this->baseRender('content/marketplace.html.twig');
  17.     }
  18. }