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

20 lines
468 B
PHP

<?php
declare(strict_types=1);
namespace KupShop\OrderingBundle\Controller;
use KupShop\OrderingBundle\View\PPLParcelShopView;
use Symfony\Component\Routing\Annotation\Route;
class PPLParcelShopController extends \Symfony\Bundle\FrameworkBundle\Controller\AbstractController
{
/**
* @Route("/_pplparcelshop", name="pplparcelshop")
*/
public function PPLParcelShopAction(PPLParcelShopView $view)
{
return $view->getResponse();
}
}