src/Entity/Blacklist.php line 9
<?php
namespace App\Entity;
use App\Repository\BlacklistRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: BlacklistRepository::class)]
class Blacklist
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(type: 'text', length: 65535, nullable:true)]
private ?string $token = null;
public function getId(): ?int
{
return $this->id;
}
public function getToken(): ?string
{
return $this->token;
}
public function setToken(?string $token): self
{
$this->token = $token;
return $this;
}
}