Refactor Classes for PHP 8.4

This commit is contained in:
2025-05-10 13:03:38 +02:00
parent 6fa6b28af6
commit 85d22d5c06
4 changed files with 14 additions and 16 deletions
@@ -19,11 +19,11 @@ use TorstenHettstedt\TimekeepingApi\Controller\WorkingHoursController;
class WorkingHoursControllerTest extends AbstractControllerTest
{
protected const FICTIONAL_STATUS_CODE = 666;
public const EXISTING_DATE = '2020-01-28';
public const EXISTING_INTERVAL = '07:20:00';
public const NEW_DATE = '2020-04-01';
public const NEW_INTERVAL = '07:59:00';
protected const int FICTIONAL_STATUS_CODE = 666;
public const string EXISTING_DATE = '2020-01-28';
public const string EXISTING_INTERVAL = '07:20:00';
public const string NEW_DATE = '2020-04-01';
public const string NEW_INTERVAL = '07:59:00';
protected ContainerInterface $container;
protected Request $request;