src/Entity/Company.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CompanyRepository;
  4. use DateTimeImmutable;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\DBAL\Types\Types;
  8. use Doctrine\ORM\Mapping as ORM;
  9. use Symfony\Component\HttpFoundation\File\File;
  10. use Vich\UploaderBundle\Mapping\Annotation as Vich;
  11. #[ORM\Entity(repositoryClassCompanyRepository::class)]
  12. #[Vich\Uploadable]
  13. class Company
  14. {
  15.     #[ORM\Id]
  16.     #[ORM\GeneratedValue]
  17.     #[ORM\Column]
  18.     private ?int $id null;
  19.     #[ORM\Column(length255)]
  20.     private ?string $name null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $logo null;
  23.     #[Vich\UploadableField(mapping'company'fileNameProperty'logo')]
  24.     private ?File $imageFile null;
  25.     #[ORM\OneToMany(mappedBy'company'targetEntityInstrument::class, orphanRemovaltrue)]
  26.     private Collection $instruments;
  27.     #[ORM\Column(nullabletrue)]
  28.     private ?\DateTimeImmutable $updatedAt null;
  29.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  30.     private ?string $description null;
  31.     #[ORM\Column(length255)]
  32.     private ?string $slug null;
  33.     public function __construct()
  34.     {
  35.         $this->instruments = new ArrayCollection();
  36.     }
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getName(): ?string
  42.     {
  43.         return $this->name;
  44.     }
  45.     public function setName(string $name): self
  46.     {
  47.         $this->name $name;
  48.         return $this;
  49.     }
  50.     /**
  51.      * @return File|null
  52.      */
  53.     public function getImageFile(): ?File
  54.     {
  55.         return $this->imageFile;
  56.     }
  57.     /**
  58.      * @param File|null $imageFile
  59.      */
  60.     public function setImageFile(?File $imageFile): void
  61.     {
  62.         $this->imageFile $imageFile;
  63.         if (null !== $imageFile) {
  64.             // It is required that at least one field changes if you are using doctrine
  65.             // otherwise the event listeners won't be called and the file is lost
  66.             $this->updatedAt = new DateTimeImmutable();
  67.         }
  68.     }
  69.     public function getLogo(): ?string
  70.     {
  71.         return $this->logo;
  72.     }
  73.     public function setLogo(?string $logo): self
  74.     {
  75.         $this->logo $logo;
  76.         return $this;
  77.     }
  78.     /**
  79.      * @return Collection<int, Instrument>
  80.      */
  81.     public function getInstruments(): Collection
  82.     {
  83.         return $this->instruments;
  84.     }
  85.     public function addInstrument(Instrument $instrument): self
  86.     {
  87.         if (!$this->instruments->contains($instrument)) {
  88.             $this->instruments->add($instrument);
  89.             $instrument->setCompany($this);
  90.         }
  91.         return $this;
  92.     }
  93.     public function removeInstrument(Instrument $instrument): self
  94.     {
  95.         if ($this->instruments->removeElement($instrument)) {
  96.             // set the owning side to null (unless already changed)
  97.             if ($instrument->getCompany() === $this) {
  98.                 $instrument->setCompany(null);
  99.             }
  100.         }
  101.         return $this;
  102.     }
  103.     public function getUpdatedAt(): ?\DateTimeImmutable
  104.     {
  105.         return $this->updatedAt;
  106.     }
  107.     public function setUpdatedAt(?\DateTimeImmutable $updatedAt): static
  108.     {
  109.         $this->updatedAt $updatedAt;
  110.         return $this;
  111.     }
  112.     public function getDescription(): ?string
  113.     {
  114.         return $this->description;
  115.     }
  116.     public function setDescription(?string $description): static
  117.     {
  118.         $this->description $description;
  119.         return $this;
  120.     }
  121.     public function getSlug(): ?string
  122.     {
  123.         return $this->slug;
  124.     }
  125.     public function setSlug(string $slug): static
  126.     {
  127.         $this->slug $slug;
  128.         return $this;
  129.     }
  130. }