0byt3m1n1-V2
Path:
/
home
/
nlpacade
/
www
/
arcaneoverseas.com
/
application
/
models
/
Entities
/
[
Home
]
File: User.php~
<?php namespace Entities; use Doctrine\ORM\Mapping as ORM; /** * Entities\User */ class User { /** * @var integer $id */ private $id; /** * @var string $nom */ private $nom; /** * @var string $prenom */ private $prenom; /** * @var string $photo */ private $photo; /** * @var string $password */ private $password; /** * @var string $email */ private $email; /** * @var string $etat */ private $etat; /** * @var Entities\Profil */ private $profils; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set nom * * @param string $nom * @return User */ public function setNom($nom) { $this->nom = $nom; return $this; } /** * Get nom * * @return string */ public function getNom() { return $this->nom; } /** * Set prenom * * @param string $prenom * @return User */ public function setPrenom($prenom) { $this->prenom = $prenom; return $this; } /** * Get prenom * * @return string */ public function getPrenom() { return $this->prenom; } /** * Set photo * * @param string $photo * @return User */ public function setPhoto($photo) { $this->photo = $photo; return $this; } /** * Get photo * * @return string */ public function getPhoto() { return $this->photo; } /** * Set password * * @param string $password * @return User */ public function setPassword($password) { $this->password = $password; return $this; } /** * Get password * * @return string */ public function getPassword() { return $this->password; } /** * Set email * * @param string $email * @return User */ public function setEmail($email) { $this->email = $email; return $this; } /** * Get email * * @return string */ public function getEmail() { return $this->email; } /** * Set etat * * @param string $etat * @return User */ public function setEtat($etat) { $this->etat = $etat; return $this; } /** * Get etat * * @return string */ public function getEtat() { return $this->etat; } /** * Set profils * * @param Entities\Profil $profils * @return User */ public function setProfils(\Entities\Profil $profils = null) { $this->profils = $profils; return $this; } /** * Get profils * * @return Entities\Profil */ public function getProfils() { return $this->profils; } }
©
2018.