0byt3m1n1-V2
Path:
/
home
/
nlpacade
/
www
/
arcaneoverseas.com
/
application
/
models
/
Entities
/
[
Home
]
File: Config.php
<?php namespace Entities; use Doctrine\ORM\Mapping as ORM; /** * Entities\Config */ class Config { /** * @var integer $id */ private $id; /** * @var string $nom_du_site */ private $nom_du_site; /** * @var text $adresse */ private $adresse; /** * @var string $phone */ private $phone; /** * @var string $fax */ private $fax; /** * @var string $email_principale */ private $email_principale; /** * @var string $url */ private $url; /** * @var string $adresse_email_contact */ private $adresse_email_contact; /** * @var string $activer_cache */ private $activer_cache; /** * @var text $google_analytics */ private $google_analytics; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set nom_du_site * * @param string $nomDuSite * @return Config */ public function setNomDuSite($nomDuSite) { $this->nom_du_site = $nomDuSite; return $this; } /** * Get nom_du_site * * @return string */ public function getNomDuSite() { return $this->nom_du_site; } /** * Set adresse * * @param text $adresse * @return Config */ public function setAdresse($adresse) { $this->adresse = $adresse; return $this; } /** * Get adresse * * @return text */ public function getAdresse() { return $this->adresse; } /** * Set phone * * @param string $phone * @return Config */ public function setPhone($phone) { $this->phone = $phone; return $this; } /** * Get phone * * @return string */ public function getPhone() { return $this->phone; } /** * Set fax * * @param string $fax * @return Config */ public function setFax($fax) { $this->fax = $fax; return $this; } /** * Get fax * * @return string */ public function getFax() { return $this->fax; } /** * Set email_principale * * @param string $emailPrincipale * @return Config */ public function setEmailPrincipale($emailPrincipale) { $this->email_principale = $emailPrincipale; return $this; } /** * Get email_principale * * @return string */ public function getEmailPrincipale() { return $this->email_principale; } /** * Set url * * @param string $url * @return Config */ public function setUrl($url) { $this->url = $url; return $this; } /** * Get url * * @return string */ public function getUrl() { return $this->url; } /** * Set adresse_email_contact * * @param string $adresseEmailContact * @return Config */ public function setAdresseEmailContact($adresseEmailContact) { $this->adresse_email_contact = $adresseEmailContact; return $this; } /** * Get adresse_email_contact * * @return string */ public function getAdresseEmailContact() { return $this->adresse_email_contact; } /** * Set activer_cache * * @param string $activerCache * @return Config */ public function setActiverCache($activerCache) { $this->activer_cache = $activerCache; return $this; } /** * Get activer_cache * * @return string */ public function getActiverCache() { return $this->activer_cache; } /** * Set google_analytics * * @param text $googleAnalytics * @return Config */ public function setGoogleAnalytics($googleAnalytics) { $this->google_analytics = $googleAnalytics; return $this; } /** * Get google_analytics * * @return text */ public function getGoogleAnalytics() { return $this->google_analytics; } }
©
2018.