for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Entity\Goals;
use App\Repository\TextsRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: TextsRepository::class)]
class Texts
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
private ?string $Target = null;
private ?string $Header = null;
private ?string $Text = null;
private ?string $Source = null;
private ?string $Text2 = null;
public function getId(): ?int
return $this->id;
}
public function getTarget(): ?string
return $this->Target;
public function setTarget(string $Target): static
$this->Target = $Target;
return $this;
public function getHeader(): ?string
return $this->Header;
public function setHeader(string $Header): static
$this->Header = $Header;
public function getText(): ?string
return $this->Text;
public function setText(string $Text): static
$this->Text = $Text;
public function getSource(): ?string
return $this->Source;
public function setSource(string $Source): static
$this->Source = $Source;
public function getText2(): ?string
return $this->Text2;
public function setText2(string $Text2): static
$this->Text2 = $Text2;