mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
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:
parent
313fb9ffdf
commit
6e9f111fd9
@ -25,9 +25,9 @@ use Symfony\Component\Messenger\MessageBusInterface;
|
|||||||
*/
|
*/
|
||||||
final readonly class RemoveExpiredStoredObjectCronJob implements CronJobInterface
|
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(
|
public function __construct(
|
||||||
private ClockInterface $clock,
|
private ClockInterface $clock,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user