src/Entity/UserBilling.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\UserBillingRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassUserBillingRepository::class)]
  6. class UserBilling
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\Column(type'string'length255nullabletrue)]
  13.     private $cardId;
  14.     #[ORM\ManyToOne(targetEntityUser::class, inversedBy'userBillings')]
  15.     private $user;
  16.     private $cardName;
  17.     private $cardNumber;
  18.     private $cardExpiryMonth;
  19.     private $cardExpiryYear;
  20.     private $cardExpiryMonthYear;
  21.     private $paymentCardCSC;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getCardId(): ?string
  27.     {
  28.         return $this->cardId;
  29.     }
  30.     public function setCardId(?string $cardId): self
  31.     {
  32.         $this->cardId $cardId;
  33.         return $this;
  34.     }
  35.     public function getUser(): ?User
  36.     {
  37.         return $this->user;
  38.     }
  39.     public function setUser(?User $user): self
  40.     {
  41.         $this->user $user;
  42.         return $this;
  43.     }
  44.     public function getCardName(): ?string
  45.     {
  46.         return $this->cardName;
  47.     }
  48.     public function setCardName(?string $cardName): self
  49.     {
  50.         $this->cardName $cardName;
  51.         return $this;
  52.     }
  53.     public function getCardNumber(): ?string
  54.     {
  55.         return $this->cardNumber;
  56.     }
  57.     public function setCardNumber(?string $cardNumber): self
  58.     {
  59.         $this->cardNumber $cardNumber;
  60.         return $this;
  61.     }
  62.     public function getCardExpiryMonth(): ?string
  63.     {
  64.         return $this->cardExpiryMonth;
  65.     }
  66.     public function setCardExpiryMonth(?string $cardExpiryMonth): self
  67.     {
  68.         $this->cardExpiryMonth $cardExpiryMonth;
  69.         return $this;
  70.     }
  71.     public function getCardExpiryYear(): ?string
  72.     {
  73.         return $this->cardExpiryYear;
  74.     }
  75.     public function setCardExpiryYear(?string $cardExpiryYear): self
  76.     {
  77.         $this->cardExpiryYear $cardExpiryYear;
  78.         return $this;
  79.     }
  80.     public function getCardExpiryMonthYear(): ?string
  81.     {
  82.         return $this->cardExpiryMonthYear;
  83.     }
  84.     public function setCardExpiryMonthYear(?string $cardExpiryMonthYear): self
  85.     {
  86.         $this->cardExpiryMonthYear $cardExpiryMonthYear;
  87.         return $this;
  88.     }
  89.     public function getPaymentCardCSC(): ?string
  90.     {
  91.         return $this->paymentCardCSC;
  92.     }
  93.     public function setPaymentCardCSC(?string $paymentCardCSC): self
  94.     {
  95.         $this->paymentCardCSC $paymentCardCSC;
  96.         return $this;
  97.     }
  98. }