src/Controller/Merchant/Widget/Api/Common/IndexController.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Merchant\Widget\Api\Common;
  3. use Symfony\Component\HttpFoundation\Response;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. class IndexController
  6. {
  7.     /**
  8.      * Widget index
  9.      *
  10.      * @Route(name="merchant.widget.index", path="/", methods={"GET"})
  11.      * @return Response
  12.      */
  13.     public function __invoke(): Response
  14.     {
  15.         return new Response();
  16.     }
  17. }