src/Entity/Feed.php line 14

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