0byt3m1n1-V2
Path:
/
home
/
nlpacade
/
www
/
arcaneoverseas.com
/
application
/
models
/
Entities
/
[
Home
]
File: TypeContenu.php~
<?php namespace Entities; use Doctrine\ORM\Mapping as ORM; /** * Entities\TypeContenu */ class TypeContenu { /** * @var integer $id */ private $id; /** * @var string $titre */ private $titre; /** * @var string $sku */ private $sku; /** * @var string $active */ private $active; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set titre * * @param string $titre * @return TypeContenu */ public function setTitre($titre) { $this->titre = $titre; return $this; } /** * Get titre * * @return string */ public function getTitre() { return $this->titre; } /** * Set sku * * @param string $sku * @return TypeContenu */ public function setSku($sku) { $this->sku = $sku; return $this; } /** * Get sku * * @return string */ public function getSku() { return $this->sku; } /** * Set active * * @param string $active * @return TypeContenu */ public function setActive($active) { $this->active = $active; return $this; } /** * Get active * * @return string */ public function getActive() { return $this->active; } }
©
2018.