mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-15 13:32:43 +01:00
14 lines
348 B
PHP
14 lines
348 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Exceptions\Api\TimeEntryStillRunningApiException;
|
|
use App\Exceptions\Api\UserNotPlaceholderApiException;
|
|
|
|
return [
|
|
'api' => [
|
|
TimeEntryStillRunningApiException::KEY => 'Time entry is still running',
|
|
UserNotPlaceholderApiException::KEY => 'The given user is not a placeholder',
|
|
],
|
|
];
|