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