src/Flexy/ShopBundle/Entity/Payment/PaymentMethod.php line 15

  1. <?php
  2. namespace App\Flexy\ShopBundle\Entity\Payment;
  3. use ApiPlatform\Core\Annotation\ApiResource;
  4. use App\Flexy\ShopBundle\Entity\Accounting\Invoice;
  5. use App\Flexy\ShopBundle\Entity\Order\Order;
  6. use App\Flexy\ShopBundle\Repository\Payment\PaymentMethodRepository;
  7. use Doctrine\Common\Collections\ArrayCollection;
  8. use Doctrine\Common\Collections\Collection;
  9. use Doctrine\ORM\Mapping as ORM;
  10. #[ApiResource]
  11. #[ORM\Entity(repositoryClassPaymentMethodRepository::class)]
  12. class PaymentMethod implements \Stringable
  13. {
  14.     #[ORM\Id]
  15.     #[ORM\GeneratedValue]
  16.     #[ORM\Column(type'integer')]
  17.     private $id;
  18.     #[ORM\Column(type'string'length255)]
  19.     private ?string $name null;
  20.     #[ORM\Column(type'string'length255nullabletrue)]
  21.     private ?string $image null;
  22.     #[ORM\Column(type'text'nullabletrue)]
  23.     private ?string $description null;
  24.     #[ORM\Column(type'string'length255)]
  25.     private ?string $code null;
  26.     #[ORM\Column(type'boolean'nullabletrue)]
  27.     private ?bool $isEnabled null;
  28.     #[ORM\Column(type'datetime_immutable'nullabletrue)]
  29.     private ?\DateTimeImmutable $createdAt null;
  30.     #[ORM\Column(type'integer'nullabletrue)]
  31.     private ?int $position null;
  32.     #[ORM\OneToMany(targetEntityPayment::class, mappedBy'paymentMethod')]
  33.     private \Doctrine\Common\Collections\Collection|array $payments;
  34.     #[ORM\OneToMany(targetEntityOrder::class, mappedBy'paymentMethod'cascade: ['persist'])]
  35.     #[ORM\JoinColumn(nullabletrueonDelete'CASCADE')]
  36.     private \Doctrine\Common\Collections\Collection|array $orders;
  37.     #[ORM\OneToMany(mappedBy'paymentMethod'targetEntityInvoice::class)]
  38.     private Collection $invoices;
  39.     #[ORM\Column(length255nullabletrue)]
  40.     private ?string $type null;
  41.     #[ORM\Column(length255nullabletrue)]
  42.     private ?string $secretKey null;
  43.     #[ORM\Column(length255nullabletrue)]
  44.     private ?string $publicKey null;
  45.     #[ORM\Column(nullabletrue)]
  46.     private array $displayOn = [];
  47.     public function __construct()
  48.     {
  49.         $this->payments = new ArrayCollection();
  50.         $this->orders = new ArrayCollection();
  51.         $this->invoices = new ArrayCollection();
  52.     }
  53.     public function __toString(): string
  54.     {
  55.         return (string)$this->name;
  56.     }
  57.     public function getId(): ?int
  58.     {
  59.         return $this->id;
  60.     }
  61.     public function getName(): ?string
  62.     {
  63.         return $this->name;
  64.     }
  65.     public function setName(string $name): self
  66.     {
  67.         $this->name $name;
  68.         return $this;
  69.     }
  70.     public function getImage(): ?string
  71.     {
  72.         return $this->image;
  73.     }
  74.     public function setImage(?string $image): self
  75.     {
  76.         $this->image $image;
  77.         return $this;
  78.     }
  79.     public function getDescription(): ?string
  80.     {
  81.         return $this->description;
  82.     }
  83.     public function setDescription(?string $description): self
  84.     {
  85.         $this->description $description;
  86.         return $this;
  87.     }
  88.     public function getCode(): ?string
  89.     {
  90.         return $this->code;
  91.     }
  92.     public function setCode(string $code): self
  93.     {
  94.         $this->code $code;
  95.         return $this;
  96.     }
  97.     public function getIsEnabled(): ?bool
  98.     {
  99.         return $this->isEnabled;
  100.     }
  101.     public function setIsEnabled(?bool $isEnabled): self
  102.     {
  103.         $this->isEnabled $isEnabled;
  104.         return $this;
  105.     }
  106.     public function getCreatedAt(): ?\DateTimeImmutable
  107.     {
  108.         return $this->createdAt;
  109.     }
  110.     public function setCreatedAt(?\DateTimeImmutable $createdAt): self
  111.     {
  112.         $this->createdAt $createdAt;
  113.         return $this;
  114.     }
  115.     public function getPosition(): ?int
  116.     {
  117.         return $this->position;
  118.     }
  119.     public function setPosition(?int $position): self
  120.     {
  121.         $this->position $position;
  122.         return $this;
  123.     }
  124.     /**
  125.      * @return Collection|Payment[]
  126.      */
  127.     public function getPayments(): Collection
  128.     {
  129.         return $this->payments;
  130.     }
  131.     public function addPayment(Payment $payment): self
  132.     {
  133.         if (!$this->payments->contains($payment)) {
  134.             $this->payments[] = $payment;
  135.             $payment->setPaymentMethod($this);
  136.         }
  137.         return $this;
  138.     }
  139.     public function removePayment(Payment $payment): self
  140.     {
  141.         if ($this->payments->removeElement($payment)) {
  142.             // set the owning side to null (unless already changed)
  143.             if ($payment->getPaymentMethod() === $this) {
  144.                 $payment->setPaymentMethod(null);
  145.             }
  146.         }
  147.         return $this;
  148.     }
  149.     /**
  150.      * @return Collection<int, Order>
  151.      */
  152.     public function getOrders(): Collection
  153.     {
  154.         return $this->orders;
  155.     }
  156.     public function addOrder(Order $order): self
  157.     {
  158.         if (!$this->orders->contains($order)) {
  159.             $this->orders[] = $order;
  160.             $order->setPaymentMethod($this);
  161.         }
  162.         return $this;
  163.     }
  164.     public function removeOrder(Order $order): self
  165.     {
  166.         if ($this->orders->removeElement($order)) {
  167.             // set the owning side to null (unless already changed)
  168.             if ($order->getPaymentMethod() === $this) {
  169.                 $order->setPaymentMethod(null);
  170.             }
  171.         }
  172.         return $this;
  173.     }
  174.     /**
  175.      * @return Collection<int, Invoice>
  176.      */
  177.     public function getInvoices(): Collection
  178.     {
  179.         return $this->invoices;
  180.     }
  181.     public function addInvoice(Invoice $invoice): self
  182.     {
  183.         if (!$this->invoices->contains($invoice)) {
  184.             $this->invoices->add($invoice);
  185.             $invoice->setPaymentMethod($this);
  186.         }
  187.         return $this;
  188.     }
  189.     public function removeInvoice(Invoice $invoice): self
  190.     {
  191.         if ($this->invoices->removeElement($invoice)) {
  192.             // set the owning side to null (unless already changed)
  193.             if ($invoice->getPaymentMethod() === $this) {
  194.                 $invoice->setPaymentMethod(null);
  195.             }
  196.         }
  197.         return $this;
  198.     }
  199.     public function getType(): ?string
  200.     {
  201.         return $this->type;
  202.     }
  203.     public function setType(?string $type): self
  204.     {
  205.         $this->type $type;
  206.         return $this;
  207.     }
  208.     public function getSecretKey(): ?string
  209.     {
  210.         return $this->secretKey;
  211.     }
  212.     public function setSecretKey(?string $secretKey): self
  213.     {
  214.         $this->secretKey $secretKey;
  215.         return $this;
  216.     }
  217.     public function getPublicKey(): ?string
  218.     {
  219.         return $this->publicKey;
  220.     }
  221.     public function setPublicKey(?string $publicKey): self
  222.     {
  223.         $this->publicKey $publicKey;
  224.         return $this;
  225.     }
  226.     public function getDisplayOn(): array
  227.     {
  228.         return $this->displayOn;
  229.     }
  230.     public function setDisplayOn(?array $displayOn): self
  231.     {
  232.         $this->displayOn $displayOn;
  233.         return $this;
  234.     }
  235. }