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

17 lines
344 B
PHP

<?php
namespace KupShop\ContentBundle\Controller;
use KupShop\ContentBundle\View\PageView;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
class PageController extends AbstractController
{
public function pageAction(PageView $view, $id): PageView
{
$view->setMenuLinkId($id);
return $view;
}
}