Fix syntax errors in RemoveExpiredStoredObjectCronJob class

Correct syntax errors involving constant definitions in the RemoveExpiredStoredObjectCronJob class. This change ensures compliance with PHP's constant declaration standards.
This commit is contained in:
Julien Fastré 2024-09-04 14:45:17 +02:00
parent 313fb9ffdf
commit 6e9f111fd9
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB

View File

@ -25,9 +25,9 @@ use Symfony\Component\Messenger\MessageBusInterface;
*/
final readonly class RemoveExpiredStoredObjectCronJob implements CronJobInterface
{
public const string KEY = 'remove-expired-stored-object';
public const KEY = 'remove-expired-stored-object';
private const string LAST_DELETED_KEY = 'last-deleted-stored-object-id';
private const LAST_DELETED_KEY = 'last-deleted-stored-object-id';
public function __construct(
private ClockInterface $clock,