src/Entity/ComentarioBlog.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComentarioBlogRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. /**
  7.  * @ORM\Entity(repositoryClass=ComentarioBlogRepository::class)
  8.  */
  9. class ComentarioBlog
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\GeneratedValue
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\ManyToOne(targetEntity=Blog::class)
  19.      */
  20.     private $blog;
  21.     /**
  22.      * @ORM\Column(type="text")
  23.      * @Assert\NotBlank(message="Debes ingresar el comentario")
  24.      */
  25.     private $comentario;
  26.     /**
  27.      * @ORM\Column(type="datetime_immutable")
  28.      */
  29.     private $created_at;
  30.     /**
  31.      * @ORM\ManyToOne(targetEntity=Usuario::class)
  32.      */
  33.     private $usuario;
  34.     public function __construct()
  35.     {
  36.         $this->created_at = new \DateTimeImmutable();
  37.     }
  38.     public function getId(): ?int
  39.     {
  40.         return $this->id;
  41.     }
  42.     public function getBlog(): ?Blog
  43.     {
  44.         return $this->blog;
  45.     }
  46.     public function setBlog(?Blog $blog): self
  47.     {
  48.         $this->blog $blog;
  49.         return $this;
  50.     }
  51.     public function getComentario(): ?string
  52.     {
  53.         return $this->comentario;
  54.     }
  55.     public function setComentario(string $comentario): self
  56.     {
  57.         $this->comentario $comentario;
  58.         return $this;
  59.     }
  60.     public function getCreatedAt(): ?\DateTimeImmutable
  61.     {
  62.         return $this->created_at;
  63.     }
  64.     public function setCreatedAt(\DateTimeImmutable $created_at): self
  65.     {
  66.         $this->created_at $created_at;
  67.         return $this;
  68.     }
  69.     public function getUsuario(): ?Usuario
  70.     {
  71.         return $this->usuario;
  72.     }
  73.     public function setUsuario(?Usuario $usuario): self
  74.     {
  75.         $this->usuario $usuario;
  76.         return $this;
  77.     }
  78. }