This commit is contained in:
Čarodej
2022-03-29 12:29:32 +02:00
parent af3f08e728
commit b0829c71e9
19 changed files with 51 additions and 52 deletions

View File

@@ -1,15 +1,17 @@
<?php
function accessDeniedError(): array {
function accessDeniedError(): array
{
return [
'type' => 'error',
'message' => 'Access Denied',
];
}
function userActionNotAllowedError(): array {
function userActionNotAllowedError(): array
{
return [
'type' => 'error',
'message' => 'This user action is not allowed.',
];
}
}