21 lines
509 B
PHP
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');
|
|
}
|
|
}
|