partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit c963663fc4569ee192926e34d62f5835c9397f85
parent d5f49711bb406b16692d2a020f33b2c0bdd40a66
Author: felicitus <felicitus@feli-t61p.felicitus.dn42>
Date:   Tue, 14 Sep 2010 23:37:49 +0200

Removed proxy class, added directory to gitignore
Diffstat:
Asrc/.gitignore | 1+
Dsrc/Proxies/deRaumZeitLaborPartDB2AuthUserProxy.php | 78------------------------------------------------------------------------------
2 files changed, 1 insertion(+), 78 deletions(-)

diff --git a/src/.gitignore b/src/.gitignore @@ -0,0 +1 @@ +/Proxies diff --git a/src/Proxies/deRaumZeitLaborPartDB2AuthUserProxy.php b/src/Proxies/deRaumZeitLaborPartDB2AuthUserProxy.php @@ -1,77 +0,0 @@ -<?php - -namespace Proxies; - -/** - * THIS CLASS WAS GENERATED BY THE DOCTRINE ORM. DO NOT EDIT THIS FILE. - */ -class deRaumZeitLaborPartDB2AuthUserProxy extends \de\RaumZeitLabor\PartDB2\Auth\User implements \Doctrine\ORM\Proxy\Proxy -{ - private $_entityPersister; - private $_identifier; - public $__isInitialized__ = false; - public function __construct($entityPersister, $identifier) - { - $this->_entityPersister = $entityPersister; - $this->_identifier = $identifier; - } - private function _load() - { - if (!$this->__isInitialized__ && $this->_entityPersister) { - $this->__isInitialized__ = true; - if ($this->_entityPersister->load($this->_identifier, $this) === null) { - throw new \Doctrine\ORM\EntityNotFoundException(); - } - unset($this->_entityPersister, $this->_identifier); - } - } - - - public function setUsername($username) - { - $this->_load(); - return parent::setUsername($username); - } - - public function getUsername() - { - $this->_load(); - return parent::getUsername(); - } - - public function setPassword($password) - { - $this->_load(); - return parent::setPassword($password); - } - - public function getHashedPassword() - { - $this->_load(); - return parent::getHashedPassword(); - } - - public function setHashedPassword($hashedPassword) - { - $this->_load(); - return parent::setHashedPassword($hashedPassword); - } - - public function comparePassword($password) - { - $this->_load(); - return parent::comparePassword($password); - } - - public function compareHashedPassword($hashedPassword) - { - $this->_load(); - return parent::compareHashedPassword($hashedPassword); - } - - - public function __sleep() - { - return array('__isInitialized__', 'username', 'password'); - } -}- \ No newline at end of file