mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 21:58:40 +03:00
14 lines
228 B
PHP
14 lines
228 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
'mezzio' => [
|
|
'error_handler' => [
|
|
'template_404' => 'ShlinkCore::error/404',
|
|
'template_error' => 'ShlinkCore::error/error',
|
|
],
|
|
],
|
|
|
|
];
|