src/Entity/Update.php line 11
<?phpnamespace App\Entity;use App\Repository\UpdateRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: UpdateRepository::class)]#[ORM\Table(name: '`update_reminder`')]class Update{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]protected $id;#[ORM\Column(type: Types::TEXT, nullable: true)]private ?string $url = null;#[ORM\Column(type: Types::TEXT, nullable: true)]private ?string $created = null;#[ORM\Column(type: Types::TEXT, nullable: true)]private ?string $reminder = null;public function getId(): ?int{return $this->id;}public function getUrl(): ?string{return $this->url;}public function setUrl(?string $url): self{$this->url = $url;return $this;}public function getCreated(): ?string{return $this->created;}public function setCreated(?string $created): self{$this->created = $created;return $this;}public function getReminder(): ?string{return $this->reminder;}public function setReminder(?string $reminder): self{$this->reminder = $reminder;return $this;}}