<?phpnamespace App\Entity;use App\Repository\MindpulseAnalyserRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=MindpulseAnalyserRepository::class) */class MindpulseAnalyser{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string", length=255) */ private $version; /** * @ORM\Column(type="string", length=255) */ private $pythonExecPath; /** * @ORM\Column(type="string", length=255) */ private $scriptPath; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $tempPath; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $logPath; /** * @ORM\Column(type="boolean") */ private $isGeneratePdf = true; public function getId(): ?int { return $this->id; } public function getVersion(): ?string { return $this->version; } public function setVersion(string $version): self { $this->version = $version; return $this; } public function getPythonExecPath(): ?string { return $this->pythonExecPath; } public function setPythonExecPath(string $pythonExecPath): self { $this->pythonExecPath = $pythonExecPath; return $this; } public function getScriptPath(): ?string { return $this->scriptPath; } public function setScriptPath(string $scriptPath): self { $this->scriptPath = $scriptPath; return $this; } public function getTempPath(): ?string { return $this->tempPath; } public function setTempPath(?string $tempPath): self { $this->tempPath = $tempPath; return $this; } public function getLogPath(): ?string { return $this->logPath; } public function setLogPath(?string $logPath): self { $this->logPath = $logPath; return $this; } public function getIsGeneratePdf(): ?bool { return $this->isGeneratePdf; } public function setIsGeneratePdf(bool $isGeneratePdf): self { $this->isGeneratePdf = $isGeneratePdf; return $this; }}