0byt3m1n1-V2
Path:
/
home
/
nlpacade
/
www
/
arcaneoverseas.com
/
application
/
models
/
Proxies
/
[
Home
]
File: __CG__EntitiesContact.php
<?php namespace Proxies\__CG__\Entities; /** * THIS CLASS WAS GENERATED BY THE DOCTRINE ORM. DO NOT EDIT THIS FILE. */ class Contact extends \Entities\Contact implements \Doctrine\ORM\Proxy\Proxy { private $_entityPersister; private $_identifier; public $__isInitialized__ = false; public function __construct($entityPersister, $identifier) { $this->_entityPersister = $entityPersister; $this->_identifier = $identifier; } /** @private */ public function __load() { if (!$this->__isInitialized__ && $this->_entityPersister) { $this->__isInitialized__ = true; if (method_exists($this, "__wakeup")) { // call this after __isInitialized__to avoid infinite recursion // but before loading to emulate what ClassMetadata::newInstance() // provides. $this->__wakeup(); } if ($this->_entityPersister->load($this->_identifier, $this) === null) { throw new \Doctrine\ORM\EntityNotFoundException(); } unset($this->_entityPersister, $this->_identifier); } } /** @private */ public function __isInitialized() { return $this->__isInitialized__; } public function getId() { if ($this->__isInitialized__ === false) { return (int) $this->_identifier["id"]; } $this->__load(); return parent::getId(); } public function setNom($nom) { $this->__load(); return parent::setNom($nom); } public function getNom() { $this->__load(); return parent::getNom(); } public function setEmail($email) { $this->__load(); return parent::setEmail($email); } public function getEmail() { $this->__load(); return parent::getEmail(); } public function setTelephone($telephone) { $this->__load(); return parent::setTelephone($telephone); } public function getTelephone() { $this->__load(); return parent::getTelephone(); } public function setSubject($subject) { $this->__load(); return parent::setSubject($subject); } public function getSubject() { $this->__load(); return parent::getSubject(); } public function setMessage($message) { $this->__load(); return parent::setMessage($message); } public function getMessage() { $this->__load(); return parent::getMessage(); } public function setDate($date) { $this->__load(); return parent::setDate($date); } public function getDate() { $this->__load(); return parent::getDate(); } public function setLu($lu) { $this->__load(); return parent::setLu($lu); } public function getLu() { $this->__load(); return parent::getLu(); } public function setPrenom($prenom) { $this->__load(); return parent::setPrenom($prenom); } public function getPrenom() { $this->__load(); return parent::getPrenom(); } public function setCompany($company) { $this->__load(); return parent::setCompany($company); } public function getCompany() { $this->__load(); return parent::getCompany(); } public function __sleep() { return array('__isInitialized__', 'id', 'nom', 'prenom', 'email', 'telephone', 'company', 'subject', 'message', 'date', 'lu'); } public function __clone() { if (!$this->__isInitialized__ && $this->_entityPersister) { $this->__isInitialized__ = true; $class = $this->_entityPersister->getClassMetadata(); $original = $this->_entityPersister->load($this->_identifier); if ($original === null) { throw new \Doctrine\ORM\EntityNotFoundException(); } foreach ($class->reflFields AS $field => $reflProperty) { $reflProperty->setValue($this, $reflProperty->getValue($original)); } unset($this->_entityPersister, $this->_identifier); } } }
©
2018.