src/Entity/PipelineLinkedinGlobal.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PipelineLinkedinGlobalRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassPipelineLinkedinGlobalRepository::class)]
  6. class PipelineLinkedinGlobal
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\Column(type'string'length255)]
  13.     private $tagUpdaterLinkedin;
  14.     #[ORM\Column(type'string'length255)]
  15.     private $tagRudy;
  16.     #[ORM\ManyToOne(targetEntityTrelloList::class, inversedBy'pipelineLinkedinUpdaterOptimisations')]
  17.     private $trelloListUpdaterOptimisation;
  18.     #[ORM\ManyToOne(targetEntityTrelloList::class, inversedBy'pipelineLinkedinRudyOptimisations')]
  19.     private $trelloListRudyOptimisation;
  20.     #[ORM\ManyToOne(targetEntityTrelloList::class, inversedBy'pipelineLinkedinClientReturnOptimisations')]
  21.     private $trelloListClientReturnOptimisation;
  22.     #[ORM\ManyToOne(targetEntityTrelloList::class, inversedBy'pipelineLinkedinUpdaterAnimations')]
  23.     private $trelloListUpdaterAnimation;
  24.     #[ORM\ManyToOne(targetEntityTrelloList::class, inversedBy'pipelineLinkedinRudyAnimations')]
  25.     private $trelloListRudyAnimation;
  26.     #[ORM\ManyToOne(targetEntityTrelloList::class, inversedBy'pipelineLinkedinClientReturnAnimations')]
  27.     private $trelloListClientReturnAnimation;
  28.     public function getId(): ?int
  29.     {
  30.         return $this->id;
  31.     }
  32.     public function getTagUpdaterLinkedin(): ?string
  33.     {
  34.         return $this->tagUpdaterLinkedin;
  35.     }
  36.     public function setTagUpdaterLinkedin(string $tagUpdaterLinkedin): self
  37.     {
  38.         $this->tagUpdaterLinkedin $tagUpdaterLinkedin;
  39.         return $this;
  40.     }
  41.     public function getTagRudy(): ?string
  42.     {
  43.         return $this->tagRudy;
  44.     }
  45.     public function setTagRudy(string $tagRudy): self
  46.     {
  47.         $this->tagRudy $tagRudy;
  48.         return $this;
  49.     }
  50.     public function getTrelloListUpdaterOptimisation(): ?TrelloList
  51.     {
  52.         return $this->trelloListUpdaterOptimisation;
  53.     }
  54.     public function setTrelloListUpdaterOptimisation(?TrelloList $trelloListUpdaterOptimisation): self
  55.     {
  56.         $this->trelloListUpdaterOptimisation $trelloListUpdaterOptimisation;
  57.         return $this;
  58.     }
  59.     public function getTrelloListRudyOptimisation(): ?TrelloList
  60.     {
  61.         return $this->trelloListRudyOptimisation;
  62.     }
  63.     public function setTrelloListRudyOptimisation(?TrelloList $trelloListRudyOptimisation): self
  64.     {
  65.         $this->trelloListRudyOptimisation $trelloListRudyOptimisation;
  66.         return $this;
  67.     }
  68.     public function getTrelloListClientReturnOptimisation(): ?TrelloList
  69.     {
  70.         return $this->trelloListClientReturnOptimisation;
  71.     }
  72.     public function setTrelloListClientReturnOptimisation(?TrelloList $trelloListClientReturnOptimisation): self
  73.     {
  74.         $this->trelloListClientReturnOptimisation $trelloListClientReturnOptimisation;
  75.         return $this;
  76.     }
  77.     public function getTrelloListUpdaterAnimation(): ?TrelloList
  78.     {
  79.         return $this->trelloListUpdaterAnimation;
  80.     }
  81.     public function setTrelloListUpdaterAnimation(?TrelloList $trelloListUpdaterAnimation): self
  82.     {
  83.         $this->trelloListUpdaterAnimation $trelloListUpdaterAnimation;
  84.         return $this;
  85.     }
  86.     public function getTrelloListRudyAnimation(): ?TrelloList
  87.     {
  88.         return $this->trelloListRudyAnimation;
  89.     }
  90.     public function setTrelloListRudyAnimation(?TrelloList $trelloListRudyAnimation): self
  91.     {
  92.         $this->trelloListRudyAnimation $trelloListRudyAnimation;
  93.         return $this;
  94.     }
  95.     public function getTrelloListClientReturnAnimation(): ?TrelloList
  96.     {
  97.         return $this->trelloListClientReturnAnimation;
  98.     }
  99.     public function setTrelloListClientReturnAnimation(?TrelloList $trelloListClientReturnAnimation): self
  100.     {
  101.         $this->trelloListClientReturnAnimation $trelloListClientReturnAnimation;
  102.         return $this;
  103.     }
  104. }