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

21 lines
509 B
PHP

<?php
namespace KupShop\ReclamationsBundle\Page;
use KupShop\ContentBundle\Page\BasePage;
use KupShop\ReclamationsBundle\View\CreateReclamationView;
class ReclamationSummaryPage extends BasePage
{
protected static $name = 'Reklamace - doprava a detaily';
protected static $type = 'RECLAMATION_SUMMARY';
/** @var CreateReclamationView */
protected $view;
public function getUrl(): string
{
return path('kupshop_reclamations_reclamations_createreclamationsummary');
}
}