subtract 100
This commit is contained in:
parent
280b0ee266
commit
f2f5358589
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ class RoutingContext {
|
||||||
public function registerDefaultErrorPages(): void {
|
public function registerDefaultErrorPages(): void {
|
||||||
$this->router->get('/error-401.html', fn() => $this->templating->render('errors/401'));
|
$this->router->get('/error-401.html', fn() => $this->templating->render('errors/401'));
|
||||||
$this->router->get('/error-403.html', fn() => $this->templating->render('errors/403'));
|
$this->router->get('/error-403.html', fn() => $this->templating->render('errors/403'));
|
||||||
$this->router->get('/error-404.html', fn() => $this->templating->render('errors/504'));
|
$this->router->get('/error-404.html', fn() => $this->templating->render('errors/404'));
|
||||||
$this->router->get('/error-500.html', fn() => $this->templating->render('errors/500'));
|
$this->router->get('/error-500.html', fn() => $this->templating->render('errors/500'));
|
||||||
$this->router->get('/error-503.html', fn() => $this->templating->render('errors/503'));
|
$this->router->get('/error-503.html', fn() => $this->templating->render('errors/503'));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue