<?php
namespace App\Entity;
use App\Repository\UserBookmarkRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: UserBookmarkRepository::class)]
class UserBookmark
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\JoinColumn(nullable: false)]
#[ORM\ManyToOne(targetEntity: User::class, inversedBy: 'bookmarks')]
private $user;
#[ORM\JoinColumn(nullable: false)]
#[ORM\ManyToOne(targetEntity: news::class, inversedBy: 'bookmarks')]
private $news;
#[ORM\Column(type: 'datetime')]
private $created_at;
#[ORM\Column(type: 'string', length: 255)]
private $title;
public function getId(): ?int
{
return $this->id;
}
public function getUser(): ?User
{
return $this->user;
}
public function setUser(?User $user): self
{
$this->user = $user;
return $this;
}
public function getNews(): ?news
{
return $this->news;
}
public function setNews(?news $news): self
{
$this->news = $news;
return $this;
}
public function getCreatedAt(): ?\DateTimeInterface
{
return $this->created_at;
}
public function setCreatedAt(\DateTimeInterface $created_at): self
{
$this->created_at = $created_at;
return $this;
}
public function getTitle(): ?string
{
return $this->title;
}
public function setTitle(string $title): self
{
$this->title = $title;
return $this;
}
}