src/Entity/FilmProjectStoryImpact.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FilmProjectStoryImpactRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassFilmProjectStoryImpactRepository::class)]
  6. class FilmProjectStoryImpact
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\Column(type'text'nullabletrue)]
  13.     private $synopsis;
  14.     #[ORM\Column(type'text'nullabletrue)]
  15.     private $logline;
  16.     #[ORM\Column(type'text'nullabletrue)]
  17.     private $issueAddressed;
  18.     #[ORM\Column(type'text'nullabletrue)]
  19.     private $creativeTreatment;
  20.     #[ORM\Column(type'string'length255nullabletrue)]
  21.     private $primaryImpactArea;
  22.     #[ORM\Column(type'array'nullabletrue)]
  23.     private $secondaryImpactArea = [];
  24.     #[ORM\Column(type'array'nullabletrue)]
  25.     private $topicCovered = [];
  26.     #[ORM\Column(type'text'nullabletrue)]
  27.     private $impactVisionStatement;
  28.     #[ORM\Column(type'array'nullabletrue)]
  29.     private $outcomes = [];
  30.     #[ORM\Column(type'text'nullabletrue)]
  31.     private $ourcomeInformation;
  32.     #[ORM\Column(type'string'length255nullabletrue)]
  33.     private $audiences;
  34.     #[ORM\Column(type'text'nullabletrue)]
  35.     private $relationshipAccess;
  36.     #[ORM\Column(type'text'nullabletrue)]
  37.     private $whoBenefit;
  38.     #[ORM\Column(type'array'nullabletrue)]
  39.     private $confirmedRole = [];
  40.     #[ORM\Column(type'string'length255nullabletrue)]
  41.     private $confirmedRoleName;
  42.     #[ORM\Column(type'text'nullabletrue)]
  43.     private $callToAction;
  44.     #[ORM\Column(type'boolean'nullabletrue)]
  45.     private $isFilmImpactPartner;
  46.     #[ORM\Column(type'string'length255nullabletrue)]
  47.     private $partnerName;
  48.     #[ORM\OneToOne(inversedBy'filmProjectStoryImpact'targetEntityFilmProject::class, cascade: ['persist''remove'])]
  49.     private $filmProject;
  50.     public function getId(): ?int
  51.     {
  52.         return $this->id;
  53.     }
  54.     public function getSynopsis(): ?string
  55.     {
  56.         return $this->synopsis;
  57.     }
  58.     public function setSynopsis(string $synopsis): self
  59.     {
  60.         $this->synopsis $synopsis;
  61.         return $this;
  62.     }
  63.     public function getLogline(): ?string
  64.     {
  65.         return $this->logline;
  66.     }
  67.     public function setLogline(string $logline): self
  68.     {
  69.         $this->logline $logline;
  70.         return $this;
  71.     }
  72.     public function getIssueAddressed(): ?string
  73.     {
  74.         return $this->issueAddressed;
  75.     }
  76.     public function setIssueAddressed(string $issueAddressed): self
  77.     {
  78.         $this->issueAddressed $issueAddressed;
  79.         return $this;
  80.     }
  81.     public function getCreativeTreatment(): ?string
  82.     {
  83.         return $this->creativeTreatment;
  84.     }
  85.     public function setCreativeTreatment(string $creativeTreatment): self
  86.     {
  87.         $this->creativeTreatment $creativeTreatment;
  88.         return $this;
  89.     }
  90.     public function getPrimaryImpactArea(): ?string
  91.     {
  92.         return $this->primaryImpactArea;
  93.     }
  94.     public function setPrimaryImpactArea(string $primaryImpactArea): self
  95.     {
  96.         $this->primaryImpactArea $primaryImpactArea;
  97.         return $this;
  98.     }
  99.     public function getSecondaryImpactArea(): ?array
  100.     {
  101.         return $this->secondaryImpactArea;
  102.     }
  103.     public function setSecondaryImpactArea(array $secondaryImpactArea): self
  104.     {
  105.         $this->secondaryImpactArea $secondaryImpactArea;
  106.         return $this;
  107.     }
  108.     public function getTopicCovered(): ?array
  109.     {
  110.         return $this->topicCovered;
  111.     }
  112.     public function setTopicCovered(?array $topicCovered): self
  113.     {
  114.         $this->topicCovered $topicCovered;
  115.         return $this;
  116.     }
  117.     public function getImpactVisionStatement(): ?string
  118.     {
  119.         return $this->impactVisionStatement;
  120.     }
  121.     public function setImpactVisionStatement(string $impactVisionStatement): self
  122.     {
  123.         $this->impactVisionStatement $impactVisionStatement;
  124.         return $this;
  125.     }
  126.     public function getOutcomes(): ?array
  127.     {
  128.         return $this->outcomes;
  129.     }
  130.     public function setOutcomes(array $outcomes): self
  131.     {
  132.         $this->outcomes $outcomes;
  133.         return $this;
  134.     }
  135.     public function getOurcomeInformation(): ?string
  136.     {
  137.         return $this->ourcomeInformation;
  138.     }
  139.     public function setOurcomeInformation(?string $ourcomeInformation): self
  140.     {
  141.         $this->ourcomeInformation $ourcomeInformation;
  142.         return $this;
  143.     }
  144.     public function getAudiences(): ?string
  145.     {
  146.         return $this->audiences;
  147.     }
  148.     public function setAudiences(?string $audiences): self
  149.     {
  150.         $this->audiences $audiences;
  151.         return $this;
  152.     }
  153.     public function getRelationshipAccess(): ?string
  154.     {
  155.         return $this->relationshipAccess;
  156.     }
  157.     public function setRelationshipAccess(?string $relationshipAccess): self
  158.     {
  159.         $this->relationshipAccess $relationshipAccess;
  160.         return $this;
  161.     }
  162.     public function getWhoBenefit(): ?string
  163.     {
  164.         return $this->whoBenefit;
  165.     }
  166.     public function setWhoBenefit(string $whoBenefit): self
  167.     {
  168.         $this->whoBenefit $whoBenefit;
  169.         return $this;
  170.     }
  171.     public function getConfirmedRole(): ?array
  172.     {
  173.         return $this->confirmedRole;
  174.     }
  175.     public function setConfirmedRole(array $confirmedRole): self
  176.     {
  177.         $this->confirmedRole $confirmedRole;
  178.         return $this;
  179.     }
  180.     public function getConfirmedRoleName(): ?string
  181.     {
  182.         return $this->confirmedRoleName;
  183.     }
  184.     public function setConfirmedRoleName(?string $confirmedRoleName): self
  185.     {
  186.         $this->confirmedRoleName $confirmedRoleName;
  187.         return $this;
  188.     }
  189.     public function getCallToAction(): ?string
  190.     {
  191.         return $this->callToAction;
  192.     }
  193.     public function setCallToAction(string $callToAction): self
  194.     {
  195.         $this->callToAction $callToAction;
  196.         return $this;
  197.     }
  198.     public function isIsFilmImpactPartner(): ?bool
  199.     {
  200.         return $this->isFilmImpactPartner;
  201.     }
  202.     public function setIsFilmImpactPartner(?bool $isFilmImpactPartner): self
  203.     {
  204.         $this->isFilmImpactPartner $isFilmImpactPartner;
  205.         return $this;
  206.     }
  207.     public function getPartnerName(): ?string
  208.     {
  209.         return $this->partnerName;
  210.     }
  211.     public function setPartnerName(?string $partnerName): self
  212.     {
  213.         $this->partnerName $partnerName;
  214.         return $this;
  215.     }
  216.     public function getFilmProject(): ?FilmProject
  217.     {
  218.         return $this->filmProject;
  219.     }
  220.     public function setFilmProject(?FilmProject $filmProject): self
  221.     {
  222.         $this->filmProject $filmProject;
  223.         return $this;
  224.     }
  225. }