src/Entity/ProcessLog.php line 11
<?phpnamespace App\Entity;use App\Repository\ProcessLogRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;use Gedmo\Timestampable\Traits\TimestampableEntity;#[ORM\Entity(repositoryClass: ProcessLogRepository::class)]class ProcessLog{use TimestampableEntity;#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(type: Types::DATETIME_MUTABLE)]private ?\DateTimeInterface $runTime = null;#[ORM\Column(type: Types::TEXT, nullable: true)]private ?string $warning = null;#[ORM\Column(type: Types::TEXT, nullable: true)]private ?string $error = null;#[ORM\Column]private ?bool $completed = null;public function getId(): ?int{return $this->id;}public function getRunTime(): ?\DateTimeInterface{return $this->runTime;}public function setRunTime(\DateTimeInterface $runTime): self{$this->runTime = $runTime;return $this;}public function getWarning(): ?string{return $this->warning;}public function setWarning(?string $warning): self{$this->warning = $warning;return $this;}public function getError(): ?string{return $this->error;}public function setError(?string $error): self{$this->error = $error;return $this;}public function isCompleted(): ?bool{return $this->completed;}public function setCompleted(bool $completed): self{$this->completed = $completed;return $this;}}