removed autogenerated Proxies from git (use misc/tools/doctrine orm:generate-proxies)

This commit is contained in:
Steffen Vogel 2012-02-21 01:48:30 +01:00
parent dcba73ca08
commit e736bbdf19
5 changed files with 0 additions and 517 deletions

View File

@ -1,125 +0,0 @@
<?php
namespace Volkszaehler\Model\Proxy;
/**
* THIS CLASS WAS GENERATED BY THE DOCTRINE ORM. DO NOT EDIT THIS FILE.
*/
class VolkszaehlerModelAggregatorProxy extends \Volkszaehler\Model\Aggregator 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 ($this->_entityPersister->load($this->_identifier, $this) === null) {
throw new \Doctrine\ORM\EntityNotFoundException();
}
unset($this->_entityPersister, $this->_identifier);
}
}
public function addChild(\Volkszaehler\Model\Entity $child)
{
$this->__load();
return parent::addChild($child);
}
public function removeChild(\Volkszaehler\Model\Entity $child)
{
$this->__load();
return parent::removeChild($child);
}
public function getChildren()
{
$this->__load();
return parent::getChildren();
}
public function checkProperties()
{
$this->__load();
return parent::checkProperties();
}
public function getProperty($key)
{
$this->__load();
return parent::getProperty($key);
}
public function getProperties($prefix = NULL)
{
$this->__load();
return parent::getProperties($prefix);
}
public function setProperty($key, $value)
{
$this->__load();
return parent::setProperty($key, $value);
}
public function deleteProperty($key)
{
$this->__load();
return parent::deleteProperty($key);
}
public function getId()
{
$this->__load();
return parent::getId();
}
public function getUuid()
{
$this->__load();
return parent::getUuid();
}
public function getType()
{
$this->__load();
return parent::getType();
}
public function getDefinition()
{
$this->__load();
return parent::getDefinition();
}
public function __sleep()
{
return array('__isInitialized__', 'id', 'uuid', 'type', 'properties', 'parents', 'children');
}
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);
}
}
}

View File

@ -1,119 +0,0 @@
<?php
namespace Volkszaehler\Model\Proxy;
/**
* THIS CLASS WAS GENERATED BY THE DOCTRINE ORM. DO NOT EDIT THIS FILE.
*/
class VolkszaehlerModelChannelProxy extends \Volkszaehler\Model\Channel 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 ($this->_entityPersister->load($this->_identifier, $this) === null) {
throw new \Doctrine\ORM\EntityNotFoundException();
}
unset($this->_entityPersister, $this->_identifier);
}
}
public function addData(\Volkszaehler\Model\Data $data)
{
$this->__load();
return parent::addData($data);
}
public function clearData(\Doctrine\ORM\EntityManager $em)
{
$this->__load();
return parent::clearData($em);
}
public function checkProperties()
{
$this->__load();
return parent::checkProperties();
}
public function getProperty($key)
{
$this->__load();
return parent::getProperty($key);
}
public function getProperties($prefix = NULL)
{
$this->__load();
return parent::getProperties($prefix);
}
public function setProperty($key, $value)
{
$this->__load();
return parent::setProperty($key, $value);
}
public function deleteProperty($key)
{
$this->__load();
return parent::deleteProperty($key);
}
public function getId()
{
$this->__load();
return parent::getId();
}
public function getUuid()
{
$this->__load();
return parent::getUuid();
}
public function getType()
{
$this->__load();
return parent::getType();
}
public function getDefinition()
{
$this->__load();
return parent::getDefinition();
}
public function __sleep()
{
return array('__isInitialized__', 'id', 'uuid', 'type', 'properties', 'parents', 'data');
}
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);
}
}
}

View File

@ -1,77 +0,0 @@
<?php
namespace Volkszaehler\Model\Proxy;
/**
* THIS CLASS WAS GENERATED BY THE DOCTRINE ORM. DO NOT EDIT THIS FILE.
*/
class VolkszaehlerModelDataProxy extends \Volkszaehler\Model\Data 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 ($this->_entityPersister->load($this->_identifier, $this) === null) {
throw new \Doctrine\ORM\EntityNotFoundException();
}
unset($this->_entityPersister, $this->_identifier);
}
}
public function toArray()
{
$this->__load();
return parent::toArray();
}
public function getValue()
{
$this->__load();
return parent::getValue();
}
public function getTimestamp()
{
$this->__load();
return parent::getTimestamp();
}
public function getChannel()
{
$this->__load();
return parent::getChannel();
}
public function __sleep()
{
return array('__isInitialized__', 'id', 'timestamp', 'value', 'channel');
}
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);
}
}
}

View File

@ -1,107 +0,0 @@
<?php
namespace Volkszaehler\Model\Proxy;
/**
* THIS CLASS WAS GENERATED BY THE DOCTRINE ORM. DO NOT EDIT THIS FILE.
*/
class VolkszaehlerModelEntityProxy extends \Volkszaehler\Model\Entity 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 ($this->_entityPersister->load($this->_identifier, $this) === null) {
throw new \Doctrine\ORM\EntityNotFoundException();
}
unset($this->_entityPersister, $this->_identifier);
}
}
public function checkProperties()
{
$this->__load();
return parent::checkProperties();
}
public function getProperty($key)
{
$this->__load();
return parent::getProperty($key);
}
public function getProperties($prefix = NULL)
{
$this->__load();
return parent::getProperties($prefix);
}
public function setProperty($key, $value)
{
$this->__load();
return parent::setProperty($key, $value);
}
public function deleteProperty($key)
{
$this->__load();
return parent::deleteProperty($key);
}
public function getId()
{
$this->__load();
return parent::getId();
}
public function getUuid()
{
$this->__load();
return parent::getUuid();
}
public function getType()
{
$this->__load();
return parent::getType();
}
public function getDefinition()
{
$this->__load();
return parent::getDefinition();
}
public function __sleep()
{
return array('__isInitialized__', 'id', 'uuid', 'type', 'properties', 'parents');
}
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);
}
}
}

View File

@ -1,89 +0,0 @@
<?php
namespace Volkszaehler\Model\Proxy;
/**
* THIS CLASS WAS GENERATED BY THE DOCTRINE ORM. DO NOT EDIT THIS FILE.
*/
class VolkszaehlerModelPropertyProxy extends \Volkszaehler\Model\Property 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 ($this->_entityPersister->load($this->_identifier, $this) === null) {
throw new \Doctrine\ORM\EntityNotFoundException();
}
unset($this->_entityPersister, $this->_identifier);
}
}
public function cast()
{
$this->__load();
return parent::cast();
}
public function validate()
{
$this->__load();
return parent::validate();
}
public function getKey()
{
$this->__load();
return parent::getKey();
}
public function getValue()
{
$this->__load();
return parent::getValue();
}
public function getDefinition()
{
$this->__load();
return parent::getDefinition();
}
public function setValue($value)
{
$this->__load();
return parent::setValue($value);
}
public function __sleep()
{
return array('__isInitialized__', 'id', 'key', 'value', 'entity');
}
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);
}
}
}