mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 14:43:49 +00:00
Fixes: Fix doctrine annotation and repository for CronJobExecution
This commit is contained in:
@@ -32,7 +32,7 @@ class CronJobExecution
|
||||
|
||||
/**
|
||||
* @var DateTimeImmutable
|
||||
* @ORM\Column(type="datetime_immutable, nullable=true, options={"default"": null})
|
||||
* @ORM\Column(type="datetime_immutable", nullable=true, options={"default": null})
|
||||
*/
|
||||
private ?DateTimeImmutable $lastEnd = null;
|
||||
|
||||
@@ -41,6 +41,9 @@ class CronJobExecution
|
||||
*/
|
||||
private DateTimeImmutable $lastStart;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="integer", nullable=true, options={"default": null})
|
||||
*/
|
||||
private ?int $lastStatus = null;
|
||||
|
||||
public function __construct(string $key)
|
||||
|
Reference in New Issue
Block a user