src/Entity/Company.php line 25

  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use ApiPlatform\Metadata\GetCollection;
  5. use ApiPlatform\Metadata\Get;
  6. use ApiPlatform\Metadata\Post;
  7. use ApiPlatform\Metadata\Put;
  8. use App\Controller\Api\CompanyController;
  9. use App\Repository\CompanyRepository;
  10. use Doctrine\ORM\Mapping as ORM;
  11. #[ORM\Entity(repositoryClassCompanyRepository::class)]
  12. #[ApiResource(
  13.     operations: [
  14.         new GetCollection(),
  15.         new Get(),
  16.         new Post(
  17.             routeName'app_api_companies',
  18.             controllerCompanyController::class
  19.         ),
  20.         new Put()
  21.     ]
  22. )]
  23. class Company
  24. {
  25.     #[ORM\Id]
  26.     #[ORM\GeneratedValue]
  27.     #[ORM\Column]
  28.     private ?int $id null;
  29.     #[ORM\Column(length255nullabletrue)]
  30.     private ?string $name null;
  31.     #[ORM\Column(length255nullabletrue)]
  32.     private ?string $adresse null;
  33.     #[ORM\Column(length255nullabletrue)]
  34.     private ?string $city null;
  35.     #[ORM\Column(length255)]
  36.     private ?string $numberSociety null;
  37.     #[ORM\Column(length255nullabletrue)]
  38.     private ?string $emailSociety null;
  39.     #[ORM\OneToOne(mappedBy'company'cascade: ['persist''remove'])]
  40.     private ?User $user null;
  41.     public function getId(): ?int
  42.     {
  43.         return $this->id;
  44.     }
  45.     public function getName(): ?string
  46.     {
  47.         return $this->name;
  48.     }
  49.     public function setName(?string $name): static
  50.     {
  51.         $this->name $name;
  52.         return $this;
  53.     }
  54.     public function getAdresse(): ?string
  55.     {
  56.         return $this->adresse;
  57.     }
  58.     public function setAdresse(?string $adresse): static
  59.     {
  60.         $this->adresse $adresse;
  61.         return $this;
  62.     }
  63.     public function getCity(): ?string
  64.     {
  65.         return $this->city;
  66.     }
  67.     public function setCity(?string $city): static
  68.     {
  69.         $this->city $city;
  70.         return $this;
  71.     }
  72.     public function getNumberSociety(): ?string
  73.     {
  74.         return $this->numberSociety;
  75.     }
  76.     public function setNumberSociety(string $numberSociety): static
  77.     {
  78.         $this->numberSociety $numberSociety;
  79.         return $this;
  80.     }
  81.     public function getEmailSociety(): ?string
  82.     {
  83.         return $this->emailSociety;
  84.     }
  85.     public function setEmailSociety(?string $emailSociety): static
  86.     {
  87.         $this->emailSociety $emailSociety;
  88.         return $this;
  89.     }
  90.     public function getUser(): ?User
  91.     {
  92.         return $this->user;
  93.     }
  94.     public function setUser(?User $user): static
  95.     {
  96.         // unset the owning side of the relation if necessary
  97.         if ($user === null && $this->user !== null) {
  98.             $this->user->setCompany(null);
  99.         }
  100.         // set the owning side of the relation if necessary
  101.         if ($user !== null && $user->getCompany() !== $this) {
  102.             $user->setCompany($this);
  103.         }
  104.         $this->user $user;
  105.         return $this;
  106.     }
  107. }