mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 00:02:15 +01:00
16 lines
524 B
PHP
16 lines
524 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Exceptions\Api\TimeEntryCanNotBeRestartedApiException;
|
|
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',
|
|
TimeEntryCanNotBeRestartedApiException::KEY => 'Time entry is already stopped and can not be restarted',
|
|
],
|
|
];
|