src/Entity/Feed.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FeedRepository;
  4. use Symfony\Component\Validator\Constraints as Assert;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * @ORM\Entity(repositoryClass=FeedRepository::class)
  8.  */
  9. class Feed
  10. {
  11.     /**
  12.      * @var int representa el id del feedback, unico, clave primaria, autogenerado.
  13.      * @ORM\Column(type="integer")
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue(strategy="AUTO")
  16.      */
  17.     protected $id;
  18.     /**
  19.      * @var string feedback del usuario
  20.      * @ORM\Column(type="text")
  21.      * @Assert\NotBlank
  22.      */
  23.     protected $feedback;
  24.     /**
  25.      * @var string feedback del usuario
  26.      * @ORM\Column(type="string")
  27.      * @Assert\NotBlank
  28.      * @Assert\Email
  29.      */
  30.     protected $email;
  31.         /**
  32.      * @var string nombre del usuario
  33.      * @ORM\Column(type="string")
  34.      * @Assert\NotBlank
  35.      */
  36.     protected $nombre;
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getFeedback(): ?string
  42.     {
  43.         return $this->feedback;
  44.     }
  45.     public function setFeedback(string $feedback): self
  46.     {
  47.         $this->feedback $feedback;
  48.         return $this;
  49.     }
  50.     public function getEmail(): ?string
  51.     {
  52.         return $this->email;
  53.     }
  54.     public function setEmail(string $email): self
  55.     {
  56.         $this->email $email;
  57.         return $this;
  58.     }
  59.     public function getNombre(): ?string
  60.     {
  61.         return $this->nombre;
  62.     }
  63.     public function setNombre(string $nombre): self
  64.     {
  65.         $this->nombre $nombre;
  66.         return $this;
  67.     }
  68. }