mirror of
https://github.com/Huber1/skigemeinschaft.git
synced 2026-05-13 12:27:34 +02:00
10 lines
206 B
PHP
10 lines
206 B
PHP
<?php
|
|
|
|
use Kirby\Panel\Lab\Responses;
|
|
|
|
return [
|
|
'lab.errors' => [
|
|
'pattern' => 'requests/lab/errors/(:any?)',
|
|
'action' => fn (string|null $type = null) => Responses::errorResponseByType($type)
|
|
],
|
|
];
|