for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Entity\Goals;
use App\Repository\DescriptionsRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: DescriptionsRepository::class)]
class Descriptions
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
private ?string $Target = null;
private ?string $Indicator = null;
private ?string $SeriesDescription = null;
private ?string $Source = 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 getIndicator(): ?string
return $this->Indicator;
public function setIndicator(string $Indicator): static
$this->Indicator = $Indicator;
public function getSeriesDescription(): ?string
return $this->SeriesDescription;
public function setSeriesDescription(string $SeriesDescription): static
$this->SeriesDescription = $SeriesDescription;
public function getSource(): ?string
return $this->Source;
public function setSource(string $Source): static
$this->Source = $Source;