src/Flexy/ShopBundle/Entity/Resource/AgentObjective.php line 14

  1. <?php
  2. namespace App\Flexy\ShopBundle\Entity\Resource;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\Flexy\ShopBundle\Entity\Resource\AgentObjectiveRepository;
  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. #[ORM\Entity(repositoryClassAgentObjectiveRepository::class)]
  10. #[ApiResource]
  11. class AgentObjective
  12. {
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue]
  15.     #[ORM\Column]
  16.     private ?int $id null;
  17.     #[ORM\Column(nullabletrue)]
  18.     private ?int $minCustomers null;
  19.     #[ORM\Column(nullabletrue)]
  20.     private ?float $minRevenue null;
  21.     #[ORM\Column(nullabletrue)]
  22.     private ?int $duration null;
  23.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  24.     private ?\DateTimeInterface $createdAt null;
  25.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  26.     private ?string $description null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $name null;
  29.     #[ORM\OneToMany(mappedBy'agentObjective'targetEntityAgent::class)]
  30.     private Collection $agents;
  31.     public function __construct()
  32.     {
  33.         $this->agents = new ArrayCollection();
  34.         $this->createdAt = new \DateTime();
  35.     }
  36.     public function __toString()
  37.     {
  38.         return (string)$this->name;
  39.     }
  40.     public function getId(): ?int
  41.     {
  42.         return $this->id;
  43.     }
  44.     public function getMinCustomers(): ?int
  45.     {
  46.         return $this->minCustomers;
  47.     }
  48.     public function setMinCustomers(?int $minCustomers): self
  49.     {
  50.         $this->minCustomers $minCustomers;
  51.         return $this;
  52.     }
  53.     public function getMinRevenue(): ?float
  54.     {
  55.         return $this->minRevenue;
  56.     }
  57.     public function setMinRevenue(?float $minRevenue): self
  58.     {
  59.         $this->minRevenue $minRevenue;
  60.         return $this;
  61.     }
  62.     public function getDuration(): ?int
  63.     {
  64.         return $this->duration;
  65.     }
  66.     public function setDuration(?int $duration): self
  67.     {
  68.         $this->duration $duration;
  69.         return $this;
  70.     }
  71.     public function getCreatedAt(): ?\DateTimeInterface
  72.     {
  73.         return $this->createdAt;
  74.     }
  75.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  76.     {
  77.         $this->createdAt $createdAt;
  78.         return $this;
  79.     }
  80.     public function getDescription(): ?string
  81.     {
  82.         return $this->description;
  83.     }
  84.     public function setDescription(?string $description): self
  85.     {
  86.         $this->description $description;
  87.         return $this;
  88.     }
  89.     public function getName(): ?string
  90.     {
  91.         return $this->name;
  92.     }
  93.     public function setName(?string $name): self
  94.     {
  95.         $this->name $name;
  96.         return $this;
  97.     }
  98.     /**
  99.      * @return Collection<int, Agent>
  100.      */
  101.     public function getAgents(): Collection
  102.     {
  103.         return $this->agents;
  104.     }
  105.     public function addAgent(Agent $agent): self
  106.     {
  107.         if (!$this->agents->contains($agent)) {
  108.             $this->agents->add($agent);
  109.             $agent->setAgentObjective($this);
  110.         }
  111.         return $this;
  112.     }
  113.     public function removeAgent(Agent $agent): self
  114.     {
  115.         if ($this->agents->removeElement($agent)) {
  116.             // set the owning side to null (unless already changed)
  117.             if ($agent->getAgentObjective() === $this) {
  118.                 $agent->setAgentObjective(null);
  119.             }
  120.         }
  121.         return $this;
  122.     }
  123. }