0byt3m1n1-V2
Path:
/
home
/
nlpacade
/
www
/
arcaneoverseas.com
/
application
/
models
/
Entities
/
[
Home
]
File: Block.php
<?php namespace Entities; use Doctrine\ORM\Mapping as ORM; /** * Entities\Block */ class Block { /** * @var integer $id */ private $id; /** * @var string $titre */ private $titre; /** * @var string $indetifiant */ private $indetifiant; /** * @var text $description */ private $description; /** * @var text $contenu */ private $contenu; /** * @var string $active */ private $active; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set titre * * @param string $titre * @return Block */ public function setTitre($titre) { $this->titre = $titre; return $this; } /** * Get titre * * @return string */ public function getTitre() { return $this->titre; } /** * Set indetifiant * * @param string $indetifiant * @return Block */ public function setIndetifiant($indetifiant) { $this->indetifiant = $indetifiant; return $this; } /** * Get indetifiant * * @return string */ public function getIndetifiant() { return $this->indetifiant; } /** * Set description * * @param text $description * @return Block */ public function setDescription($description) { $this->description = $description; return $this; } /** * Get description * * @return text */ public function getDescription() { return $this->description; } /** * Set contenu * * @param text $contenu * @return Block */ public function setContenu($contenu) { $this->contenu = $contenu; return $this; } /** * Get contenu * * @return text */ public function getContenu() { return $this->contenu; } /** * Set active * * @param string $active * @return Block */ public function setActive($active) { $this->active = $active; return $this; } /** * Get active * * @return string */ public function getActive() { return $this->active; } }
©
2018.