15 lines
257 B
PHP
15 lines
257 B
PHP
<?php
|
|
|
|
namespace KupShop\ContentBundle\Page;
|
|
|
|
class Error404Page extends BasePage
|
|
{
|
|
protected static $name = 'Chyba 404';
|
|
protected static $type = 'ERROR_404';
|
|
|
|
public function getUrl(): string
|
|
{
|
|
return '/nesmysl123456789/';
|
|
}
|
|
}
|