src/Entity/PaymentDetails.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PaymentDetailsRepository;
  4. use App\String\Constant;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassPaymentDetailsRepository::class)]
  7. class PaymentDetails
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column(type'integer')]
  12.     private $id;
  13.     #[ORM\Column(type'float'nullabletrue)]
  14.     private $amount;
  15.     #[ORM\Column(type'string'length255nullabletrue)]
  16.     private $status;
  17.     #[ORM\Column(type'datetime'nullabletrue)]
  18.     private $createdAt;
  19.     #[ORM\Column(type'datetime'nullabletrue)]
  20.     private $modifiedAt;
  21.     #[ORM\Column(type'string'length255nullabletrue)]
  22.     private $type;
  23.     #[ORM\OneToOne(inversedBy'paymentDetails'targetEntityOrderDetails::class, cascade: ['persist''remove'])]
  24.     private $orderDetails;
  25.     #[ORM\Column(type'boolean'nullabletrue)]
  26.     private $isPaid;
  27.     public function getId(): ?int
  28.     {
  29.         return $this->id;
  30.     }
  31.     public function getAmount(): ?float
  32.     {
  33.         return $this->amount;
  34.     }
  35.     public function setAmount(?float $amount): self
  36.     {
  37.         $this->amount $amount;
  38.         return $this;
  39.     }
  40.     public function getStatus(): ?string
  41.     {
  42.         return $this->status;
  43.     }
  44.     public function setStatus(?string $status): self
  45.     {
  46.         $this->status $status;
  47.         return $this;
  48.     }
  49.     public function getCreatedAt(): ?\DateTimeInterface
  50.     {
  51.         return $this->createdAt;
  52.     }
  53.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  54.     {
  55.         $this->createdAt $createdAt;
  56.         return $this;
  57.     }
  58.     public function getModifiedAt(): ?\DateTimeInterface
  59.     {
  60.         return $this->modifiedAt;
  61.     }
  62.     public function setModifiedAt(?\DateTimeInterface $modifiedAt): self
  63.     {
  64.         $this->modifiedAt $modifiedAt;
  65.         return $this;
  66.     }
  67.     public function getType(): ?string
  68.     {
  69.         return $this->type;
  70.     }
  71.     public function setType(?string $type): self
  72.     {
  73.         $this->type $type;
  74.         return $this;
  75.     }
  76.     public function getOrderDetails(): ?OrderDetails
  77.     {
  78.         return $this->orderDetails;
  79.     }
  80.     public function setOrderDetails(?OrderDetails $orderDetails): self
  81.     {
  82.         $this->orderDetails $orderDetails;
  83.         return $this;
  84.     }
  85.     public function isIsPaid(): ?bool
  86.     {
  87.         return $this->isPaid;
  88.     }
  89.     public function setIsPaid(?bool $isPaid): self
  90.     {
  91.         $this->isPaid $isPaid;
  92.         return $this;
  93.     }
  94.     public function setPaid(): self
  95.     {
  96.         $this->status Constant::PAYMENT_STATUS_PAID;
  97.         $this->isPaid true;
  98.         return $this;
  99.     }
  100.     public function setRefundedStatus(): self
  101.     {
  102.         $this->status Constant::PAYMENT_STATUS_REFUNDED;
  103.         return $this;
  104.     }
  105.     public function setPendingStatus(): self
  106.     {
  107.         $this->status Constant::PAYMENT_STATUS_PENDING;
  108.         return $this;
  109.     }
  110.     public function setFailedStatus(): self
  111.     {
  112.         $this->status Constant::PAYMENT_STATUS_FAILED;
  113.         return $this;
  114.     }
  115.     public function setEftType(): self
  116.     {
  117.         $this->type Constant::PAYMENT_EFT;
  118.         return $this;
  119.     }
  120. }