src\Entity\Update.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\UpdateRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=UpdateRepository::class)
  7.  * @ORM\Table(name="`update`")
  8.  */
  9. class Update
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\GeneratedValue
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\Column(type="string", length=255)
  19.      */
  20.     private $version;
  21.     /**
  22.      * @ORM\Column(type="text", nullable=true)
  23.      */
  24.     private $description;
  25.     /**
  26.      * @ORM\Column(type="boolean")
  27.      */
  28.     private $required;
  29.     /**
  30.      * @ORM\Column(type="datetime")
  31.      */
  32.     private $created_at;
  33.     /**
  34.      * @ORM\Column(type="boolean")
  35.      */
  36.     private $status;
  37.     /**
  38.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="updates")
  39.      * @ORM\JoinColumn(nullable=false)
  40.      */
  41.     private $user;
  42.     /**
  43.      * @ORM\Column(type="datetime")
  44.      */
  45.     private $date;
  46.     public function __construct()
  47.     {
  48.         $this->created_at= new \DateTime();
  49.         $this->status false;
  50.     }
  51.     public function getId(): ?int
  52.     {
  53.         return $this->id;
  54.     }
  55.     public function getVersion(): ?string
  56.     {
  57.         return $this->version;
  58.     }
  59.     public function setVersion(string $version): self
  60.     {
  61.         $this->version $version;
  62.         return $this;
  63.     }
  64.     public function getDescription(): ?string
  65.     {
  66.         return $this->description;
  67.     }
  68.     public function setDescription(?string $description): self
  69.     {
  70.         $this->description $description;
  71.         return $this;
  72.     }
  73.     public function getRequired(): ?bool
  74.     {
  75.         return $this->required;
  76.     }
  77.     public function setRequired(bool $required): self
  78.     {
  79.         $this->required $required;
  80.         return $this;
  81.     }
  82.     public function getCreatedAt(): ?\DateTimeInterface
  83.     {
  84.         return $this->created_at;
  85.     }
  86.     public function setCreatedAt(\DateTimeInterface $created_at): self
  87.     {
  88.         $this->created_at $created_at;
  89.         return $this;
  90.     }
  91.     public function getStatus(): ?bool
  92.     {
  93.         return $this->status;
  94.     }
  95.     public function setStatus(bool $status): self
  96.     {
  97.         $this->status $status;
  98.         return $this;
  99.     }
  100.     public function getUser(): ?User
  101.     {
  102.         return $this->user;
  103.     }
  104.     public function setUser(?User $user): self
  105.     {
  106.         $this->user $user;
  107.         return $this;
  108.     }
  109.     public function getDate(): ?\DateTimeInterface
  110.     {
  111.         return $this->date;
  112.     }
  113.     public function setDate(\DateTimeInterface $date): self
  114.     {
  115.         $this->date $date;
  116.         return $this;
  117.     }
  118. }