Files
kupshop/bundles/KupShop/ReclamationsBundle/Page/ReclamationsListPage.php
2025-08-02 16:30:27 +02:00

21 lines
463 B
PHP

<?php
namespace KupShop\ReclamationsBundle\Page;
use KupShop\ContentBundle\Page\BasePage;
use KupShop\ReclamationsBundle\View\ReclamationsView;
class ReclamationsListPage extends BasePage
{
protected static $name = 'Reklamace';
protected static $type = 'RECLAMATIONS_LIST';
/** @var ReclamationsView */
protected $view;
public function getUrl(): string
{
return path('kupshop_reclamations_reclamations_reclamations');
}
}