src/Entity/CustomerBankAccount.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CustomerBankAccountRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassCustomerBankAccountRepository::class)]
  6. class CustomerBankAccount
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255)]
  13.     private ?string $bank null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $holder null;
  16.     #[ORM\Column(length255)]
  17.     private ?string $iban null;
  18.     #[ORM\Column(length255)]
  19.     private ?string $bic null;
  20.     #[ORM\ManyToOne(targetEntityCustomer::class, inversedBy'bankAccounts')]
  21.     #[ORM\JoinColumn(name'fk_customer'nullablefalse)]
  22.     private ?Customer $customer;
  23.     public function getId(): ?int
  24.     {
  25.         return $this->id;
  26.     }
  27.     public function getBank(): ?string
  28.     {
  29.         return $this->bank;
  30.     }
  31.     public function setBank(string $bank): self
  32.     {
  33.         $this->bank $bank;
  34.         return $this;
  35.     }
  36.     public function getHolder(): ?string
  37.     {
  38.         return $this->holder;
  39.     }
  40.     public function setHolder(string $holder): self
  41.     {
  42.         $this->holder $holder;
  43.         return $this;
  44.     }
  45.     public function getIban(): ?string
  46.     {
  47.         return $this->iban;
  48.     }
  49.     public function setIban(string $iban): self
  50.     {
  51.         $this->iban $iban;
  52.         return $this;
  53.     }
  54.     public function getCustomer(): ?Customer
  55.     {
  56.         return $this->customer;
  57.     }
  58.     public function setCustomer(?Customer $customer): self
  59.     {
  60.         $this->customer $customer;
  61.         return $this;
  62.     }
  63.     public function getBic(): ?string
  64.     {
  65.         return $this->bic;
  66.     }
  67.     public function setBic(string $bic): self
  68.     {
  69.         $this->bic $bic;
  70.         return $this;
  71.     }
  72. }