src/Entity/PipelineMailjetGlobal.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PipelineMailjetGlobalRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassPipelineMailjetGlobalRepository::class)]
  6. class PipelineMailjetGlobal
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\ManyToOne(targetEntityTrelloList::class, inversedBy'pipelineMailjetGlobalDevs')]
  13.     private $trelloListDev;
  14.     #[ORM\ManyToOne(targetEntityTrelloList::class, inversedBy'pipelineMailjetGlobalClientReturns')]
  15.     private $trelloListClientReturn;
  16.     #[ORM\ManyToOne(targetEntityTrelloList::class, inversedBy'pipelineMailjetGlobalOnlines')]
  17.     private $trelloListOnline;
  18.     #[ORM\Column(type'string'length255)]
  19.     private $tagDev;
  20.     public function getId(): ?int
  21.     {
  22.         return $this->id;
  23.     }
  24.     public function getTrelloListDev(): ?TrelloList
  25.     {
  26.         return $this->trelloListDev;
  27.     }
  28.     public function setTrelloListDev(?TrelloList $trelloListDev): self
  29.     {
  30.         $this->trelloListDev $trelloListDev;
  31.         return $this;
  32.     }
  33.     public function getTrelloListClientReturn(): ?TrelloList
  34.     {
  35.         return $this->trelloListClientReturn;
  36.     }
  37.     public function setTrelloListClientReturn(?TrelloList $trelloListClientReturn): self
  38.     {
  39.         $this->trelloListClientReturn $trelloListClientReturn;
  40.         return $this;
  41.     }
  42.     public function getTrelloListOnline(): ?TrelloList
  43.     {
  44.         return $this->trelloListOnline;
  45.     }
  46.     public function setTrelloListOnline(?TrelloList $trelloListOnline): self
  47.     {
  48.         $this->trelloListOnline $trelloListOnline;
  49.         return $this;
  50.     }
  51.     public function getTagDev(): ?string
  52.     {
  53.         return $this->tagDev;
  54.     }
  55.     public function setTagDev(string $tagDev): self
  56.     {
  57.         $this->tagDev $tagDev;
  58.         return $this;
  59.     }
  60. }