src/Entity/Crew.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CrewRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Symfony\Component\HttpFoundation\File\File;
  9. use Vich\UploaderBundle\Mapping\Annotation as Vich;
  10. #[ORM\Entity(repositoryClassCrewRepository::class)]
  11. #[Vich\Uploadable]
  12. class Crew
  13. {
  14.     #[ORM\Id]
  15.     #[ORM\GeneratedValue]
  16.     #[ORM\Column]
  17.     private ?int $id null;
  18.     #[ORM\Column(length255)]
  19.     private ?string $name null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $city null;
  22.     #[ORM\ManyToOne]
  23.     private ?Country $country null;
  24.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  25.     private ?string $description null;
  26.     #[Vich\UploadableField(mapping'crew_backround'fileNameProperty'backgroundFileName'size'backgroundSize')]
  27.     public ?File $backgroundFile null;
  28.     #[ORM\Column(nullabletrue)]
  29.     private ?string $backgroundFileName null;
  30.     #[ORM\Column(nullabletrue)]
  31.     private ?int $backgroundSize null;
  32.     #[Vich\UploadableField(mapping'crew_image'fileNameProperty'imageName'size'imageSize')]
  33.     public ?File $imageFile null;
  34.     #[ORM\Column(nullabletrue)]
  35.     private ?string $imageName null;
  36.     #[ORM\Column(nullabletrue)]
  37.     private ?int $imageSize null;
  38.     #[ORM\Column(nullabletrue)]
  39.     private ?\DateTime $updatedAt null;
  40.     #[ORM\Column(nullabletrue)]
  41.     private ?\DateTime $createdAt null;
  42.     #[ORM\OneToMany(mappedBy'crew'targetEntityRapper::class)]
  43.     private Collection $rappers;
  44.     #[ORM\Column(length255nullabletrue)]
  45.     private ?string $tag null;
  46.     #[ORM\OneToOne(inversedBy'crew'cascade: ['persist''remove'])]
  47.     private ?Client $createdBy null;
  48.     #[ORM\Column(nullabletrue)]
  49.     private ?int $rank null;
  50.     public function __toString()
  51.     {
  52.         return (string)$this->getName();
  53.     }
  54.     public function __construct()
  55.     {
  56.         $this->rappers = new ArrayCollection();
  57.     }
  58.     public function getId(): ?int
  59.     {
  60.         return $this->id;
  61.     }
  62.     public function getName(): ?string
  63.     {
  64.         return $this->name;
  65.     }
  66.     public function setName(string $name): static
  67.     {
  68.         $this->name $name;
  69.         return $this;
  70.     }
  71.     public function getCity(): ?string
  72.     {
  73.         return $this->city;
  74.     }
  75.     public function setCity(string $city): static
  76.     {
  77.         $this->city $city;
  78.         return $this;
  79.     }
  80.     public function getCountry(): ?Country
  81.     {
  82.         return $this->country;
  83.     }
  84.     public function setCountry(?Country $country): static
  85.     {
  86.         $this->country $country;
  87.         return $this;
  88.     }
  89.     public function getDescription(): ?string
  90.     {
  91.         return $this->description;
  92.     }
  93.     public function setDescription(?string $description): static
  94.     {
  95.         $this->description $description;
  96.         return $this;
  97.     }
  98.     public function setImageFile(?File $imageFile null): void
  99.     {
  100.         $this->imageFile $imageFile;
  101.         if (null !== $imageFile) {
  102.             // It is required that at least one field changes if you are using doctrine
  103.             // otherwise the event listeners won't be called and the file is lost
  104.             $this->updatedAt = new \DateTime();
  105.         }
  106.     }
  107.     public function getImageFile(): ?File
  108.     {
  109.         return $this->imageFile;
  110.     }
  111.     public function setImageName(?string $imageName): void
  112.     {
  113.         $this->imageName $imageName;
  114.     }
  115.     public function getImageName(): ?string
  116.     {
  117.         return $this->imageName;
  118.     }
  119.     public function setImageSize(?int $imageSize): void
  120.     {
  121.         $this->imageSize $imageSize;
  122.     }
  123.     public function getImageSize(): ?int
  124.     {
  125.         return $this->imageSize;
  126.     }
  127.     public function setBackgroundFile(?File $backgroundFile null): void
  128.     {
  129.         $this->backgroundFile $backgroundFile;
  130.         if (null !== $backgroundFile) {
  131.             // It is required that at least one field changes if you are using doctrine
  132.             // otherwise the event listeners won't be called and the file is lost
  133.             $this->updatedAt = new \DateTime();
  134.         }
  135.     }
  136.     public function getBackgroundFile(): ?File
  137.     {
  138.         return $this->backgroundFile;
  139.     }
  140.     public function setBackgroundFileName(?string $backgroundFileName): void
  141.     {
  142.         $this->backgroundFileName $backgroundFileName;
  143.     }
  144.     public function getBackgroundFileName(): ?string
  145.     {
  146.         return $this->backgroundFileName;
  147.     }
  148.     public function setBackgroundSize(?int $backgroundSize): void
  149.     {
  150.         $this->backgroundSize $backgroundSize;
  151.     }
  152.     public function getBackgroundSize(): ?int
  153.     {
  154.         return $this->backgroundSize;
  155.     }
  156.     public function getUpdatedAt(): ?\DateTime
  157.     {
  158.         return $this->updatedAt;
  159.     }
  160.     public function setUpdatedAt(\DateTime $updatedAt): static
  161.     {
  162.         $this->updatedAt $updatedAt;
  163.         return $this;
  164.     }
  165.     public function getCreatedAt(): ?\DateTime
  166.     {
  167.         return $this->createdAt;
  168.     }
  169.     public function setCreatedAt(\DateTime $createdAt): static
  170.     {
  171.         $this->createdAt $createdAt;
  172.         return $this;
  173.     }
  174.     /**
  175.      * @return Collection<int, Rapper>
  176.      */
  177.     public function getRappers(): Collection
  178.     {
  179.         return $this->rappers;
  180.     }
  181.     public function addRapper(Rapper $rapper): static
  182.     {
  183.         if (!$this->rappers->contains($rapper)) {
  184.             $this->rappers->add($rapper);
  185.             $rapper->setCrew($this);
  186.         }
  187.         return $this;
  188.     }
  189.     public function removeRapper(Rapper $rapper): static
  190.     {
  191.         if ($this->rappers->removeElement($rapper)) {
  192.             // set the owning side to null (unless already changed)
  193.             if ($rapper->getCrew() === $this) {
  194.                 $rapper->setCrew(null);
  195.             }
  196.         }
  197.         return $this;
  198.     }
  199.     public function getTag(): ?string
  200.     {
  201.         return $this->tag;
  202.     }
  203.     public function setTag(?string $tag): static
  204.     {
  205.         $this->tag $tag;
  206.         return $this;
  207.     }
  208.     public function getCreatedBy(): ?Client
  209.     {
  210.         return $this->createdBy;
  211.     }
  212.     public function setCreatedBy(?Client $createdBy): static
  213.     {
  214.         $this->createdBy $createdBy;
  215.         return $this;
  216.     }
  217.     public function getRank(): ?int
  218.     {
  219.         return $this->rank;
  220.     }
  221.     public function setRank(int $rank): static
  222.     {
  223.         $this->rank $rank;
  224.         return $this;
  225.     }
  226. }