src/Entity/ConnexionUser.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Core\Annotation\ApiResource;
  4. use App\Repository\ConnexionUserRepository;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ApiResource()
  9.  * @ORM\Entity(repositoryClass=ConnexionUserRepository::class)
  10.  */
  11. class ConnexionUser
  12. {
  13.     /**
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue
  16.      * @ORM\Column(type="integer")
  17.      * 
  18.      */
  19.     private $id;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $nom;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.  
  28.     private $prenom;
  29.     /**
  30.      * @ORM\Column(type="string", length=255)
  31.      */
  32.     private $email;
  33.     /**
  34.      * @ORM\Column(type="string", length=255)
  35.      */
  36.     private $type;
  37.     /**
  38.      * @ORM\Column(type="string", length=255)
  39.      */
  40.     private $password;
  41.     /**
  42.      * @ORM\Column(type="string", length=255)
  43.      */
  44.     private $phone;
  45.      /**
  46.     * @ORM\OneToMany(targetEntity="PayementMethod",mappedBy="id_user",cascade={"remove","persist"})
  47.       */
  48.     private $evenementUser;
  49.     public function getId(): ?int
  50.     {
  51.         return $this->id;
  52.     }
  53.     public function getNom(): ?string
  54.     {
  55.         return $this->nom;
  56.     }
  57.     public function setNom(string $nom): self
  58.     {
  59.         $this->nom $nom;
  60.         return $this;
  61.     }
  62.     public function getPrenom(): ?string
  63.     {
  64.         return $this->prenom;
  65.     }
  66.     public function setPrenom(string $prenom): self
  67.     {
  68.         $this->prenom $prenom;
  69.         return $this;
  70.     }
  71.     public function getEmail(): ?string
  72.     {
  73.         return $this->email;
  74.     }
  75.     public function setEmail(string $email): self
  76.     {
  77.         $this->email $email;
  78.         return $this;
  79.     }
  80.     public function getType(): ?string
  81.     {
  82.         return $this->type;
  83.     }
  84.     public function setType(string $type): self
  85.     {
  86.         $this->type $type;
  87.         return $this;
  88.     }
  89.     public function getPassword(): ?string
  90.     {
  91.         return $this->password;
  92.     }
  93.     public function setPassword(string $password): self
  94.     {
  95.         $this->password $password;
  96.         return $this;
  97.     }
  98.     public function getPhone(): ?string
  99.     {
  100.         return $this->phone;
  101.     }
  102.     public function setPhone(string $phone): self
  103.     {
  104.         $this->phone $phone;
  105.         return $this;
  106.     }
  107.     public function __toString(): string
  108.     {
  109.         return $this->nom." ".$this->prenom;
  110.     }
  111. }