<?phpnamespace App\Entity;use App\Repository\PipelineLinkedinGlobalRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: PipelineLinkedinGlobalRepository::class)]class PipelineLinkedinGlobal{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'integer')] private $id; #[ORM\Column(type: 'string', length: 255)] private $tagUpdaterLinkedin; #[ORM\Column(type: 'string', length: 255)] private $tagRudy; #[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineLinkedinUpdaterOptimisations')] private $trelloListUpdaterOptimisation; #[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineLinkedinRudyOptimisations')] private $trelloListRudyOptimisation; #[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineLinkedinClientReturnOptimisations')] private $trelloListClientReturnOptimisation; #[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineLinkedinUpdaterAnimations')] private $trelloListUpdaterAnimation; #[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineLinkedinRudyAnimations')] private $trelloListRudyAnimation; #[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineLinkedinClientReturnAnimations')] private $trelloListClientReturnAnimation; public function getId(): ?int { return $this->id; } public function getTagUpdaterLinkedin(): ?string { return $this->tagUpdaterLinkedin; } public function setTagUpdaterLinkedin(string $tagUpdaterLinkedin): self { $this->tagUpdaterLinkedin = $tagUpdaterLinkedin; return $this; } public function getTagRudy(): ?string { return $this->tagRudy; } public function setTagRudy(string $tagRudy): self { $this->tagRudy = $tagRudy; return $this; } public function getTrelloListUpdaterOptimisation(): ?TrelloList { return $this->trelloListUpdaterOptimisation; } public function setTrelloListUpdaterOptimisation(?TrelloList $trelloListUpdaterOptimisation): self { $this->trelloListUpdaterOptimisation = $trelloListUpdaterOptimisation; return $this; } public function getTrelloListRudyOptimisation(): ?TrelloList { return $this->trelloListRudyOptimisation; } public function setTrelloListRudyOptimisation(?TrelloList $trelloListRudyOptimisation): self { $this->trelloListRudyOptimisation = $trelloListRudyOptimisation; return $this; } public function getTrelloListClientReturnOptimisation(): ?TrelloList { return $this->trelloListClientReturnOptimisation; } public function setTrelloListClientReturnOptimisation(?TrelloList $trelloListClientReturnOptimisation): self { $this->trelloListClientReturnOptimisation = $trelloListClientReturnOptimisation; return $this; } public function getTrelloListUpdaterAnimation(): ?TrelloList { return $this->trelloListUpdaterAnimation; } public function setTrelloListUpdaterAnimation(?TrelloList $trelloListUpdaterAnimation): self { $this->trelloListUpdaterAnimation = $trelloListUpdaterAnimation; return $this; } public function getTrelloListRudyAnimation(): ?TrelloList { return $this->trelloListRudyAnimation; } public function setTrelloListRudyAnimation(?TrelloList $trelloListRudyAnimation): self { $this->trelloListRudyAnimation = $trelloListRudyAnimation; return $this; } public function getTrelloListClientReturnAnimation(): ?TrelloList { return $this->trelloListClientReturnAnimation; } public function setTrelloListClientReturnAnimation(?TrelloList $trelloListClientReturnAnimation): self { $this->trelloListClientReturnAnimation = $trelloListClientReturnAnimation; return $this; }}