src/Entity/Statistics.php line 9
<?php
namespace App\Entity;
use App\Repository\StatisticsRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: StatisticsRepository::class)]
class Statistics
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
private ?string $test = null;
public function getId(): ?int
{
return $this->id;
}
public function getTest(): ?string
{
return $this->test;
}
public function setTest(string $test): self
{
$this->test = $test;
return $this;
}
}