src/Entity/Card.php line 14

  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\CardRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use ApiPlatform\Metadata\ApiFilter;
  7. use ApiPlatform\Doctrine\Orm\Filter\SearchFilter;
  8. #[ORM\Entity(repositoryClassCardRepository::class)]
  9. #[ApiResource]
  10. #[ApiFilter(SearchFilter::class, properties: ["user" => "exact"])]
  11. class Card
  12. {
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue]
  15.     #[ORM\Column]
  16.     private ?int $id null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $token null;
  19.     #[ORM\Column(length2000nullabletrue)]
  20.     private ?string $customerToken null;
  21.     #[ORM\Column(length10)]
  22.     private ?string $lastDigit null;
  23.     #[ORM\ManyToOne(inversedBy'cards')]
  24.     private ?User $user null;
  25.     public function getId(): ?int
  26.     {
  27.         return $this->id;
  28.     }
  29.     public function getToken(): ?string
  30.     {
  31.         return $this->token;
  32.     }
  33.     public function setToken(?string $token): static
  34.     {
  35.         $this->token $token;
  36.         return $this;
  37.     }
  38.     public function getCustomerToken(): ?string
  39.     {
  40.         return $this->customerToken;
  41.     }
  42.     public function setCustomerToken(?string $customerToken): static
  43.     {
  44.         $this->customerToken $customerToken;
  45.         return $this;
  46.     }
  47.     public function getLastDigit(): ?string
  48.     {
  49.         return $this->lastDigit;
  50.     }
  51.     public function setLastDigit(string $lastDigit): static
  52.     {
  53.         $this->lastDigit $lastDigit;
  54.         return $this;
  55.     }
  56.     public function getUser(): ?User
  57.     {
  58.         return $this->user;
  59.     }
  60.     public function setUser(?User $user): static
  61.     {
  62.         $this->user $user;
  63.         return $this;
  64.     }
  65. }