Files
kupshop/bundles/KupShop/CatalogBundle/Controller/AutocompleteController.php
2025-08-02 16:30:27 +02:00

22 lines
553 B
PHP

<?php
namespace KupShop\CatalogBundle\Controller;
use KupShop\CatalogBundle\View\AutocompleteView;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\Routing\Annotation\Route;
class AutocompleteController extends AbstractController
{
/**
* @Route("/autocomplete/")
*
* @return JsonResponse
*/
public function autocompleteAction(AutocompleteView $autocompleteView)
{
return $autocompleteView->handleAutocomplete();
}
}