remove proxies
This commit is contained in:
parent
a656e28157
commit
2e08bbf940
7 changed files with 1 additions and 1321 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,6 +1,7 @@
|
||||||
vendor
|
vendor
|
||||||
composer.lock
|
composer.lock
|
||||||
cache/db.sqlite
|
cache/db.sqlite
|
||||||
|
cache/proxies/__CG__*
|
||||||
config/*
|
config/*
|
||||||
!config/_default.php
|
!config/_default.php
|
||||||
.phpintel
|
.phpintel
|
||||||
|
|
224
cache/proxy/__CG__EmotionHeroModelsEmotion.php
vendored
224
cache/proxy/__CG__EmotionHeroModelsEmotion.php
vendored
|
@ -1,224 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace DoctrineProxies\__CG__\EmotionHero\Models;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
|
|
||||||
*/
|
|
||||||
class Emotion extends \EmotionHero\Models\Emotion implements \Doctrine\ORM\Proxy\Proxy
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with
|
|
||||||
* three parameters, being respectively the proxy object to be initialized, the method that triggered the
|
|
||||||
* initialization process and an array of ordered parameters that were passed to that method.
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__setInitializer
|
|
||||||
*/
|
|
||||||
public $__initializer__;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var \Closure the callback responsible of loading properties that need to be copied in the cloned object
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__setCloner
|
|
||||||
*/
|
|
||||||
public $__cloner__;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var boolean flag indicating if this object was already initialized
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__isInitialized
|
|
||||||
*/
|
|
||||||
public $__isInitialized__ = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array properties to be lazy loaded, with keys being the property
|
|
||||||
* names and values being their default values
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties
|
|
||||||
*/
|
|
||||||
public static $lazyPropertiesDefaults = [];
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param \Closure $initializer
|
|
||||||
* @param \Closure $cloner
|
|
||||||
*/
|
|
||||||
public function __construct($initializer = null, $cloner = null)
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ = $initializer;
|
|
||||||
$this->__cloner__ = $cloner;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function __sleep()
|
|
||||||
{
|
|
||||||
if ($this->__isInitialized__) {
|
|
||||||
return ['__isInitialized__', '' . "\0" . 'EmotionHero\\Models\\Emotion' . "\0" . 'id', '' . "\0" . 'EmotionHero\\Models\\Emotion' . "\0" . 'name', '' . "\0" . 'EmotionHero\\Models\\Emotion' . "\0" . 'targets'];
|
|
||||||
}
|
|
||||||
|
|
||||||
return ['__isInitialized__', '' . "\0" . 'EmotionHero\\Models\\Emotion' . "\0" . 'id', '' . "\0" . 'EmotionHero\\Models\\Emotion' . "\0" . 'name', '' . "\0" . 'EmotionHero\\Models\\Emotion' . "\0" . 'targets'];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public function __wakeup()
|
|
||||||
{
|
|
||||||
if ( ! $this->__isInitialized__) {
|
|
||||||
$this->__initializer__ = function (Emotion $proxy) {
|
|
||||||
$proxy->__setInitializer(null);
|
|
||||||
$proxy->__setCloner(null);
|
|
||||||
|
|
||||||
$existingProperties = get_object_vars($proxy);
|
|
||||||
|
|
||||||
foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
|
|
||||||
if ( ! array_key_exists($property, $existingProperties)) {
|
|
||||||
$proxy->$property = $defaultValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public function __clone()
|
|
||||||
{
|
|
||||||
$this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Forces initialization of the proxy
|
|
||||||
*/
|
|
||||||
public function __load()
|
|
||||||
{
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __isInitialized()
|
|
||||||
{
|
|
||||||
return $this->__isInitialized__;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __setInitialized($initialized)
|
|
||||||
{
|
|
||||||
$this->__isInitialized__ = $initialized;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __setInitializer(\Closure $initializer = null)
|
|
||||||
{
|
|
||||||
$this->__initializer__ = $initializer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __getInitializer()
|
|
||||||
{
|
|
||||||
return $this->__initializer__;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __setCloner(\Closure $cloner = null)
|
|
||||||
{
|
|
||||||
$this->__cloner__ = $cloner;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific cloning logic
|
|
||||||
*/
|
|
||||||
public function __getCloner()
|
|
||||||
{
|
|
||||||
return $this->__cloner__;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
* @static
|
|
||||||
*/
|
|
||||||
public function __getLazyProperties()
|
|
||||||
{
|
|
||||||
return self::$lazyPropertiesDefaults;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getId()
|
|
||||||
{
|
|
||||||
if ($this->__isInitialized__ === false) {
|
|
||||||
return (int) parent::getId();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []);
|
|
||||||
|
|
||||||
return parent::getId();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getName()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []);
|
|
||||||
|
|
||||||
return parent::getName();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function setName($name)
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]);
|
|
||||||
|
|
||||||
return parent::setName($name);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getTargets()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getTargets', []);
|
|
||||||
|
|
||||||
return parent::getTargets();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
257
cache/proxy/__CG__EmotionHeroModelsGame.php
vendored
257
cache/proxy/__CG__EmotionHeroModelsGame.php
vendored
|
@ -1,257 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace DoctrineProxies\__CG__\EmotionHero\Models;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
|
|
||||||
*/
|
|
||||||
class Game extends \EmotionHero\Models\Game implements \Doctrine\ORM\Proxy\Proxy
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with
|
|
||||||
* three parameters, being respectively the proxy object to be initialized, the method that triggered the
|
|
||||||
* initialization process and an array of ordered parameters that were passed to that method.
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__setInitializer
|
|
||||||
*/
|
|
||||||
public $__initializer__;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var \Closure the callback responsible of loading properties that need to be copied in the cloned object
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__setCloner
|
|
||||||
*/
|
|
||||||
public $__cloner__;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var boolean flag indicating if this object was already initialized
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__isInitialized
|
|
||||||
*/
|
|
||||||
public $__isInitialized__ = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array properties to be lazy loaded, with keys being the property
|
|
||||||
* names and values being their default values
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties
|
|
||||||
*/
|
|
||||||
public static $lazyPropertiesDefaults = [];
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param \Closure $initializer
|
|
||||||
* @param \Closure $cloner
|
|
||||||
*/
|
|
||||||
public function __construct($initializer = null, $cloner = null)
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ = $initializer;
|
|
||||||
$this->__cloner__ = $cloner;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function __sleep()
|
|
||||||
{
|
|
||||||
if ($this->__isInitialized__) {
|
|
||||||
return ['__isInitialized__', '' . "\0" . 'EmotionHero\\Models\\Game' . "\0" . 'id', '' . "\0" . 'EmotionHero\\Models\\Game' . "\0" . 'user', '' . "\0" . 'EmotionHero\\Models\\Game' . "\0" . 'level', '' . "\0" . 'EmotionHero\\Models\\Game' . "\0" . 'hits', '' . "\0" . 'EmotionHero\\Models\\Game' . "\0" . 'score', '' . "\0" . 'EmotionHero\\Models\\Game' . "\0" . 'createdAt'];
|
|
||||||
}
|
|
||||||
|
|
||||||
return ['__isInitialized__', '' . "\0" . 'EmotionHero\\Models\\Game' . "\0" . 'id', '' . "\0" . 'EmotionHero\\Models\\Game' . "\0" . 'user', '' . "\0" . 'EmotionHero\\Models\\Game' . "\0" . 'level', '' . "\0" . 'EmotionHero\\Models\\Game' . "\0" . 'hits', '' . "\0" . 'EmotionHero\\Models\\Game' . "\0" . 'score', '' . "\0" . 'EmotionHero\\Models\\Game' . "\0" . 'createdAt'];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public function __wakeup()
|
|
||||||
{
|
|
||||||
if ( ! $this->__isInitialized__) {
|
|
||||||
$this->__initializer__ = function (Game $proxy) {
|
|
||||||
$proxy->__setInitializer(null);
|
|
||||||
$proxy->__setCloner(null);
|
|
||||||
|
|
||||||
$existingProperties = get_object_vars($proxy);
|
|
||||||
|
|
||||||
foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
|
|
||||||
if ( ! array_key_exists($property, $existingProperties)) {
|
|
||||||
$proxy->$property = $defaultValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public function __clone()
|
|
||||||
{
|
|
||||||
$this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Forces initialization of the proxy
|
|
||||||
*/
|
|
||||||
public function __load()
|
|
||||||
{
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __isInitialized()
|
|
||||||
{
|
|
||||||
return $this->__isInitialized__;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __setInitialized($initialized)
|
|
||||||
{
|
|
||||||
$this->__isInitialized__ = $initialized;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __setInitializer(\Closure $initializer = null)
|
|
||||||
{
|
|
||||||
$this->__initializer__ = $initializer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __getInitializer()
|
|
||||||
{
|
|
||||||
return $this->__initializer__;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __setCloner(\Closure $cloner = null)
|
|
||||||
{
|
|
||||||
$this->__cloner__ = $cloner;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific cloning logic
|
|
||||||
*/
|
|
||||||
public function __getCloner()
|
|
||||||
{
|
|
||||||
return $this->__cloner__;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
* @static
|
|
||||||
*/
|
|
||||||
public function __getLazyProperties()
|
|
||||||
{
|
|
||||||
return self::$lazyPropertiesDefaults;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getId()
|
|
||||||
{
|
|
||||||
if ($this->__isInitialized__ === false) {
|
|
||||||
return parent::getId();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []);
|
|
||||||
|
|
||||||
return parent::getId();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getUser()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []);
|
|
||||||
|
|
||||||
return parent::getUser();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getLevel()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLevel', []);
|
|
||||||
|
|
||||||
return parent::getLevel();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getHits()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getHits', []);
|
|
||||||
|
|
||||||
return parent::getHits();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getScore()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getScore', []);
|
|
||||||
|
|
||||||
return parent::getScore();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getCreatedAt()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedAt', []);
|
|
||||||
|
|
||||||
return parent::getCreatedAt();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getPosition()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPosition', []);
|
|
||||||
|
|
||||||
return parent::getPosition();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
176
cache/proxy/__CG__EmotionHeroModelsHit.php
vendored
176
cache/proxy/__CG__EmotionHeroModelsHit.php
vendored
File diff suppressed because one or more lines are too long
209
cache/proxy/__CG__EmotionHeroModelsLevel.php
vendored
209
cache/proxy/__CG__EmotionHeroModelsLevel.php
vendored
|
@ -1,209 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace DoctrineProxies\__CG__\EmotionHero\Models;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
|
|
||||||
*/
|
|
||||||
class Level extends \EmotionHero\Models\Level implements \Doctrine\ORM\Proxy\Proxy
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with
|
|
||||||
* three parameters, being respectively the proxy object to be initialized, the method that triggered the
|
|
||||||
* initialization process and an array of ordered parameters that were passed to that method.
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__setInitializer
|
|
||||||
*/
|
|
||||||
public $__initializer__;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var \Closure the callback responsible of loading properties that need to be copied in the cloned object
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__setCloner
|
|
||||||
*/
|
|
||||||
public $__cloner__;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var boolean flag indicating if this object was already initialized
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__isInitialized
|
|
||||||
*/
|
|
||||||
public $__isInitialized__ = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array properties to be lazy loaded, with keys being the property
|
|
||||||
* names and values being their default values
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties
|
|
||||||
*/
|
|
||||||
public static $lazyPropertiesDefaults = [];
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param \Closure $initializer
|
|
||||||
* @param \Closure $cloner
|
|
||||||
*/
|
|
||||||
public function __construct($initializer = null, $cloner = null)
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ = $initializer;
|
|
||||||
$this->__cloner__ = $cloner;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function __sleep()
|
|
||||||
{
|
|
||||||
if ($this->__isInitialized__) {
|
|
||||||
return ['__isInitialized__', '' . "\0" . 'EmotionHero\\Models\\Level' . "\0" . 'id', '' . "\0" . 'EmotionHero\\Models\\Level' . "\0" . 'name', '' . "\0" . 'EmotionHero\\Models\\Level' . "\0" . 'targets', '' . "\0" . 'EmotionHero\\Models\\Level' . "\0" . 'games'];
|
|
||||||
}
|
|
||||||
|
|
||||||
return ['__isInitialized__', '' . "\0" . 'EmotionHero\\Models\\Level' . "\0" . 'id', '' . "\0" . 'EmotionHero\\Models\\Level' . "\0" . 'name', '' . "\0" . 'EmotionHero\\Models\\Level' . "\0" . 'targets', '' . "\0" . 'EmotionHero\\Models\\Level' . "\0" . 'games'];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public function __wakeup()
|
|
||||||
{
|
|
||||||
if ( ! $this->__isInitialized__) {
|
|
||||||
$this->__initializer__ = function (Level $proxy) {
|
|
||||||
$proxy->__setInitializer(null);
|
|
||||||
$proxy->__setCloner(null);
|
|
||||||
|
|
||||||
$existingProperties = get_object_vars($proxy);
|
|
||||||
|
|
||||||
foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
|
|
||||||
if ( ! array_key_exists($property, $existingProperties)) {
|
|
||||||
$proxy->$property = $defaultValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public function __clone()
|
|
||||||
{
|
|
||||||
$this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Forces initialization of the proxy
|
|
||||||
*/
|
|
||||||
public function __load()
|
|
||||||
{
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __isInitialized()
|
|
||||||
{
|
|
||||||
return $this->__isInitialized__;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __setInitialized($initialized)
|
|
||||||
{
|
|
||||||
$this->__isInitialized__ = $initialized;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __setInitializer(\Closure $initializer = null)
|
|
||||||
{
|
|
||||||
$this->__initializer__ = $initializer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __getInitializer()
|
|
||||||
{
|
|
||||||
return $this->__initializer__;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __setCloner(\Closure $cloner = null)
|
|
||||||
{
|
|
||||||
$this->__cloner__ = $cloner;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific cloning logic
|
|
||||||
*/
|
|
||||||
public function __getCloner()
|
|
||||||
{
|
|
||||||
return $this->__cloner__;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
* @static
|
|
||||||
*/
|
|
||||||
public function __getLazyProperties()
|
|
||||||
{
|
|
||||||
return self::$lazyPropertiesDefaults;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function createTarget(\EmotionHero\Models\Emotion $emotion, float $score, float $time)
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'createTarget', [$emotion, $score, $time]);
|
|
||||||
|
|
||||||
return parent::createTarget($emotion, $score, $time);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function setId($id)
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setId', [$id]);
|
|
||||||
|
|
||||||
return parent::setId($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function setName($name)
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]);
|
|
||||||
|
|
||||||
return parent::setName($name);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
176
cache/proxy/__CG__EmotionHeroModelsTarget.php
vendored
176
cache/proxy/__CG__EmotionHeroModelsTarget.php
vendored
|
@ -1,176 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace DoctrineProxies\__CG__\EmotionHero\Models;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
|
|
||||||
*/
|
|
||||||
class Target extends \EmotionHero\Models\Target implements \Doctrine\ORM\Proxy\Proxy
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with
|
|
||||||
* three parameters, being respectively the proxy object to be initialized, the method that triggered the
|
|
||||||
* initialization process and an array of ordered parameters that were passed to that method.
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__setInitializer
|
|
||||||
*/
|
|
||||||
public $__initializer__;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var \Closure the callback responsible of loading properties that need to be copied in the cloned object
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__setCloner
|
|
||||||
*/
|
|
||||||
public $__cloner__;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var boolean flag indicating if this object was already initialized
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__isInitialized
|
|
||||||
*/
|
|
||||||
public $__isInitialized__ = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array properties to be lazy loaded, with keys being the property
|
|
||||||
* names and values being their default values
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties
|
|
||||||
*/
|
|
||||||
public static $lazyPropertiesDefaults = [];
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param \Closure $initializer
|
|
||||||
* @param \Closure $cloner
|
|
||||||
*/
|
|
||||||
public function __construct($initializer = null, $cloner = null)
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ = $initializer;
|
|
||||||
$this->__cloner__ = $cloner;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function __sleep()
|
|
||||||
{
|
|
||||||
if ($this->__isInitialized__) {
|
|
||||||
return ['__isInitialized__', '' . "\0" . 'EmotionHero\\Models\\Target' . "\0" . 'id', '' . "\0" . 'EmotionHero\\Models\\Target' . "\0" . 'position', '' . "\0" . 'EmotionHero\\Models\\Target' . "\0" . 'level', '' . "\0" . 'EmotionHero\\Models\\Target' . "\0" . 'time', '' . "\0" . 'EmotionHero\\Models\\Target' . "\0" . 'emotion', '' . "\0" . 'EmotionHero\\Models\\Target' . "\0" . 'score', '' . "\0" . 'EmotionHero\\Models\\Target' . "\0" . 'hits'];
|
|
||||||
}
|
|
||||||
|
|
||||||
return ['__isInitialized__', '' . "\0" . 'EmotionHero\\Models\\Target' . "\0" . 'id', '' . "\0" . 'EmotionHero\\Models\\Target' . "\0" . 'position', '' . "\0" . 'EmotionHero\\Models\\Target' . "\0" . 'level', '' . "\0" . 'EmotionHero\\Models\\Target' . "\0" . 'time', '' . "\0" . 'EmotionHero\\Models\\Target' . "\0" . 'emotion', '' . "\0" . 'EmotionHero\\Models\\Target' . "\0" . 'score', '' . "\0" . 'EmotionHero\\Models\\Target' . "\0" . 'hits'];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public function __wakeup()
|
|
||||||
{
|
|
||||||
if ( ! $this->__isInitialized__) {
|
|
||||||
$this->__initializer__ = function (Target $proxy) {
|
|
||||||
$proxy->__setInitializer(null);
|
|
||||||
$proxy->__setCloner(null);
|
|
||||||
|
|
||||||
$existingProperties = get_object_vars($proxy);
|
|
||||||
|
|
||||||
foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
|
|
||||||
if ( ! array_key_exists($property, $existingProperties)) {
|
|
||||||
$proxy->$property = $defaultValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public function __clone()
|
|
||||||
{
|
|
||||||
$this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Forces initialization of the proxy
|
|
||||||
*/
|
|
||||||
public function __load()
|
|
||||||
{
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __isInitialized()
|
|
||||||
{
|
|
||||||
return $this->__isInitialized__;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __setInitialized($initialized)
|
|
||||||
{
|
|
||||||
$this->__isInitialized__ = $initialized;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __setInitializer(\Closure $initializer = null)
|
|
||||||
{
|
|
||||||
$this->__initializer__ = $initializer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __getInitializer()
|
|
||||||
{
|
|
||||||
return $this->__initializer__;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __setCloner(\Closure $cloner = null)
|
|
||||||
{
|
|
||||||
$this->__cloner__ = $cloner;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific cloning logic
|
|
||||||
*/
|
|
||||||
public function __getCloner()
|
|
||||||
{
|
|
||||||
return $this->__cloner__;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
* @static
|
|
||||||
*/
|
|
||||||
public function __getLazyProperties()
|
|
||||||
{
|
|
||||||
return self::$lazyPropertiesDefaults;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
279
cache/proxy/__CG__EmotionHeroModelsUser.php
vendored
279
cache/proxy/__CG__EmotionHeroModelsUser.php
vendored
|
@ -1,279 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace DoctrineProxies\__CG__\EmotionHero\Models;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
|
|
||||||
*/
|
|
||||||
class User extends \EmotionHero\Models\User implements \Doctrine\ORM\Proxy\Proxy
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with
|
|
||||||
* three parameters, being respectively the proxy object to be initialized, the method that triggered the
|
|
||||||
* initialization process and an array of ordered parameters that were passed to that method.
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__setInitializer
|
|
||||||
*/
|
|
||||||
public $__initializer__;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var \Closure the callback responsible of loading properties that need to be copied in the cloned object
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__setCloner
|
|
||||||
*/
|
|
||||||
public $__cloner__;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var boolean flag indicating if this object was already initialized
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__isInitialized
|
|
||||||
*/
|
|
||||||
public $__isInitialized__ = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array properties to be lazy loaded, with keys being the property
|
|
||||||
* names and values being their default values
|
|
||||||
*
|
|
||||||
* @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties
|
|
||||||
*/
|
|
||||||
public static $lazyPropertiesDefaults = [];
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param \Closure $initializer
|
|
||||||
* @param \Closure $cloner
|
|
||||||
*/
|
|
||||||
public function __construct($initializer = null, $cloner = null)
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ = $initializer;
|
|
||||||
$this->__cloner__ = $cloner;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function __sleep()
|
|
||||||
{
|
|
||||||
if ($this->__isInitialized__) {
|
|
||||||
return ['__isInitialized__', '' . "\0" . 'EmotionHero\\Models\\User' . "\0" . 'id', '' . "\0" . 'EmotionHero\\Models\\User' . "\0" . 'games', 'createdAt'];
|
|
||||||
}
|
|
||||||
|
|
||||||
return ['__isInitialized__', '' . "\0" . 'EmotionHero\\Models\\User' . "\0" . 'id', '' . "\0" . 'EmotionHero\\Models\\User' . "\0" . 'games', 'createdAt'];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public function __wakeup()
|
|
||||||
{
|
|
||||||
if ( ! $this->__isInitialized__) {
|
|
||||||
$this->__initializer__ = function (User $proxy) {
|
|
||||||
$proxy->__setInitializer(null);
|
|
||||||
$proxy->__setCloner(null);
|
|
||||||
|
|
||||||
$existingProperties = get_object_vars($proxy);
|
|
||||||
|
|
||||||
foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
|
|
||||||
if ( ! array_key_exists($property, $existingProperties)) {
|
|
||||||
$proxy->$property = $defaultValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public function __clone()
|
|
||||||
{
|
|
||||||
$this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Forces initialization of the proxy
|
|
||||||
*/
|
|
||||||
public function __load()
|
|
||||||
{
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __isInitialized()
|
|
||||||
{
|
|
||||||
return $this->__isInitialized__;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __setInitialized($initialized)
|
|
||||||
{
|
|
||||||
$this->__isInitialized__ = $initialized;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __setInitializer(\Closure $initializer = null)
|
|
||||||
{
|
|
||||||
$this->__initializer__ = $initializer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __getInitializer()
|
|
||||||
{
|
|
||||||
return $this->__initializer__;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
*/
|
|
||||||
public function __setCloner(\Closure $cloner = null)
|
|
||||||
{
|
|
||||||
$this->__cloner__ = $cloner;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific cloning logic
|
|
||||||
*/
|
|
||||||
public function __getCloner()
|
|
||||||
{
|
|
||||||
return $this->__cloner__;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
* @internal generated method: use only when explicitly handling proxy specific loading logic
|
|
||||||
* @static
|
|
||||||
*/
|
|
||||||
public function __getLazyProperties()
|
|
||||||
{
|
|
||||||
return self::$lazyPropertiesDefaults;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function setCreatedAt(\DateTime $createdAt)
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreatedAt', [$createdAt]);
|
|
||||||
|
|
||||||
return parent::setCreatedAt($createdAt);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getCreatedAt()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedAt', []);
|
|
||||||
|
|
||||||
return parent::getCreatedAt();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getRoles()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getRoles', []);
|
|
||||||
|
|
||||||
return parent::getRoles();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getPassword()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPassword', []);
|
|
||||||
|
|
||||||
return parent::getPassword();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getSalt()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getSalt', []);
|
|
||||||
|
|
||||||
return parent::getSalt();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getUsername()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUsername', []);
|
|
||||||
|
|
||||||
return parent::getUsername();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function eraseCredentials()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'eraseCredentials', []);
|
|
||||||
|
|
||||||
return parent::eraseCredentials();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getId()
|
|
||||||
{
|
|
||||||
if ($this->__isInitialized__ === false) {
|
|
||||||
return parent::getId();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []);
|
|
||||||
|
|
||||||
return parent::getId();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getJwt()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getJwt', []);
|
|
||||||
|
|
||||||
return parent::getJwt();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in a new issue