<?php
namespace App\Controller\Merchant\Widget\Api\Common;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class IndexController
{
/**
* Widget index
*
* @Route(name="merchant.widget.index", path="/", methods={"GET"})
* @return Response
*/
public function __invoke(): Response
{
return new Response();
}
}