0byt3m1n1-V2
Path:
/
home
/
nlpacade
/
www
/
arcaneoverseas.com
/
application
/
models
/
Entities
/
[
Home
]
File: Profil.php
<?php namespace Entities; use Doctrine\ORM\Mapping as ORM; /** * Entities\Profil */ class Profil { /** * @var integer $id */ private $id; /** * @var string $nom */ private $nom; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set nom * * @param string $nom * @return Profil */ public function setNom($nom) { $this->nom = $nom; return $this; } /** * Get nom * * @return string */ public function getNom() { return $this->nom; } }
©
2018.