<?phpdeclare(strict_types=1);/* * This file is part of SolidInvoice project. * * (c) Pierre du Plessis <open-source@solidworx.co> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */namespace SolidInvoice\CoreBundle\Entity;use Doctrine\Common\Collections\ArrayCollection;use Doctrine\Common\Collections\Collection;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;use Ramsey\Uuid\Doctrine\UuidOrderedTimeGenerator;use Ramsey\Uuid\UuidInterface;use SolidInvoice\CoreBundle\Repository\CompanyRepository;use SolidInvoice\UserBundle\Entity\User;use Stringable;#[ORM\Table(name: Company::TABLE_NAME)]#[ORM\Entity(repositoryClass: CompanyRepository::class)]class Company implements Stringable{ final public const TABLE_NAME = 'companies'; #[ORM\Id] #[ORM\GeneratedValue(strategy: 'CUSTOM')] #[ORM\CustomIdGenerator(class: UuidOrderedTimeGenerator::class)] #[ORM\Column(type: 'uuid_binary_ordered_time', unique: true)] private UuidInterface $id; #[ORM\Column(type: Types::STRING, length: 255)] private string $name; /** * @var Collection<int, User> */ #[ORM\ManyToMany(targetEntity: User::class, mappedBy: 'companies')] private Collection $users; public function __construct() { $this->users = new ArrayCollection(); } public function getId(): UuidInterface { return $this->id; } public function getName(): string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function __toString(): string { return $this->name; } /** * @return Collection<int, User> */ public function getUsers(): Collection { return $this->users; } public function addUser(User $user): self { if (! $this->users->contains($user)) { $this->users[] = $user; $user->addCompany($this); } return $this; } public function removeUser(User $user): self { if ($this->users->removeElement($user)) { $user->removeCompany($this); } return $this; }}