mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-27 01:11:39 -06:00
19 lines
402 B
PHP
19 lines
402 B
PHP
<?php
|
|
use Shlinkio\Shlink\Rest\Expressive\JsonErrorHandler;
|
|
|
|
return [
|
|
|
|
'error_handler' => [
|
|
'plugins' => [
|
|
'invokables' => [
|
|
'application/json' => JsonErrorHandler::class,
|
|
],
|
|
'aliases' => [
|
|
'application/x-json' => 'application/json',
|
|
'text/json' => 'application/json',
|
|
],
|
|
],
|
|
],
|
|
|
|
];
|