src\Entity\FluxRss.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FluxRssRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=FluxRssRepository::class)
  7.  */
  8. class FluxRss
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $title;
  20.     /**
  21.      * @ORM\Column(type="text")
  22.      */
  23.     private $description;
  24.     /**
  25.      * @ORM\Column(type="datetime")
  26.      */
  27.     private $created_at;
  28.     /**
  29.      * @ORM\Column(type="datetime", nullable=true)
  30.      */
  31.     private $updated_at;
  32.     /**
  33.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="fluxRss")
  34.      */
  35.     private $user;
  36.     /**
  37.      * @ORM\Column(type="datetime",nullable=true)
  38.      */
  39.     private $published_at;
  40.     /**
  41.      * @ORM\Column(type="integer", nullable=true)
  42.      */
  43.     private ?int $type null;
  44.     public function __construct()
  45.     {
  46.         $this->created_at = new \DateTime();  
  47.      /*  $this->user = $this->getUser()->getId(); */
  48.                 
  49.       
  50.     }
  51.     public function getId(): ?int
  52.     {
  53.         return $this->id;
  54.     }
  55.     public function getTitle(): ?string
  56.     {
  57.         return $this->title;
  58.     }
  59.     public function setTitle(string $title): self
  60.     {
  61.         $this->title $title;
  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 getCreatedAt(): ?\DateTimeInterface
  74.     {
  75.         return $this->created_at;
  76.     }
  77.     public function setCreatedAt(\DateTimeInterface $created_at): self
  78.     {
  79.         $this->created_at $created_at;
  80.         return $this;
  81.     }
  82.     public function getUpdatedAt(): ?\DateTimeInterface
  83.     {
  84.         return $this->updated_at;
  85.     }
  86.     public function setUpdatedAt(?\DateTimeInterface $updated_at): self
  87.     {
  88.         $this->updated_at $updated_at;
  89.         return $this;
  90.     }
  91.     public function getUser(): ?User
  92.     {
  93.         return $this->user;
  94.     }
  95.     public function setUser(?User $user): self
  96.     {
  97.         $this->user $user;
  98.         return $this;
  99.     }
  100.     public function getPublishedAt(): ?\DateTimeInterface
  101.     {
  102.         return $this->published_at;
  103.     }
  104.     public function setPublishedAt(\DateTimeInterface $published_at): self
  105.     {
  106.         $this->published_at $published_at;
  107.         return $this;
  108.     }
  109.     /**
  110.      * @return int|null
  111.      */
  112.     public function getType(): ?int
  113.     {
  114.         return $this->type;
  115.     }
  116.     /**
  117.      * @return string
  118.      */
  119.     public function getTypeName(): string
  120.     {
  121.         return ($this->type === 2) ? "BVMAC""BRVM";
  122.     }
  123.     /**
  124.      * @param int|null $type
  125.      * @return FluxRss
  126.      */
  127.     public function setType(?int $type): FluxRss
  128.     {
  129.         $this->type $type;
  130.         return $this;
  131.     }
  132. }