<?phpnamespace ContainerZorTAEy;include_once \dirname(__DIR__, 4).'/src/Services/SeoService.php';class SeoService_4eb7b66 extends \App\Services\SeoService implements \ProxyManager\Proxy\VirtualProxyInterface{ /** * @var \App\Services\SeoService|null wrapped object, if the proxy is initialized */ private $valueHolder4046c = null; /** * @var \Closure|null initializer responsible for generating the wrapped object */ private $initializer9f5cb = null; /** * @var bool[] map of public properties of the parent class */ private static $publicProperties2dd98 = [ ]; public function getUrl($slug) { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, 'getUrl', array('slug' => $slug), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; return $this->valueHolder4046c->getUrl($slug); } public function getType($slug) { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, 'getType', array('slug' => $slug), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; return $this->valueHolder4046c->getType($slug); } /** * Constructor for lazy initialization * * @param \Closure|null $initializer */ public static function staticProxyConstructor($initializer) { static $reflection; $reflection = $reflection ?? new \ReflectionClass(__CLASS__); $instance = $reflection->newInstanceWithoutConstructor(); \Closure::bind(function (\App\Services\SeoService $instance) { unset($instance->em, $instance->container, $instance->twig); }, $instance, 'App\\Services\\SeoService')->__invoke($instance); $instance->initializer9f5cb = $initializer; return $instance; } public function __construct(\Doctrine\ORM\EntityManagerInterface $em, \Symfony\Component\DependencyInjection\ContainerInterface $container, \Twig\Environment $twig) { static $reflection; if (! $this->valueHolder4046c) { $reflection = $reflection ?? new \ReflectionClass('App\\Services\\SeoService'); $this->valueHolder4046c = $reflection->newInstanceWithoutConstructor(); \Closure::bind(function (\App\Services\SeoService $instance) { unset($instance->em, $instance->container, $instance->twig); }, $this, 'App\\Services\\SeoService')->__invoke($this); } $this->valueHolder4046c->__construct($em, $container, $twig); } public function & __get($name) { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, '__get', ['name' => $name], $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; if (isset(self::$publicProperties2dd98[$name])) { return $this->valueHolder4046c->$name; } $realInstanceReflection = new \ReflectionClass('App\\Services\\SeoService'); if (! $realInstanceReflection->hasProperty($name)) { $targetObject = $this->valueHolder4046c; $backtrace = debug_backtrace(false, 1); trigger_error( sprintf( 'Undefined property: %s::$%s in %s on line %s', $realInstanceReflection->getName(), $name, $backtrace[0]['file'], $backtrace[0]['line'] ), \E_USER_NOTICE ); return $targetObject->$name; } $targetObject = $this->valueHolder4046c; $accessor = function & () use ($targetObject, $name) { return $targetObject->$name; }; $backtrace = debug_backtrace(true, 2); $scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub(); $accessor = $accessor->bindTo($scopeObject, get_class($scopeObject)); $returnValue = & $accessor(); return $returnValue; } public function __set($name, $value) { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, '__set', array('name' => $name, 'value' => $value), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; $realInstanceReflection = new \ReflectionClass('App\\Services\\SeoService'); if (! $realInstanceReflection->hasProperty($name)) { $targetObject = $this->valueHolder4046c; $targetObject->$name = $value; return $targetObject->$name; } $targetObject = $this->valueHolder4046c; $accessor = function & () use ($targetObject, $name, $value) { $targetObject->$name = $value; return $targetObject->$name; }; $backtrace = debug_backtrace(true, 2); $scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub(); $accessor = $accessor->bindTo($scopeObject, get_class($scopeObject)); $returnValue = & $accessor(); return $returnValue; } public function __isset($name) { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, '__isset', array('name' => $name), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; $realInstanceReflection = new \ReflectionClass('App\\Services\\SeoService'); if (! $realInstanceReflection->hasProperty($name)) { $targetObject = $this->valueHolder4046c; return isset($targetObject->$name); } $targetObject = $this->valueHolder4046c; $accessor = function () use ($targetObject, $name) { return isset($targetObject->$name); }; $backtrace = debug_backtrace(true, 2); $scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub(); $accessor = $accessor->bindTo($scopeObject, get_class($scopeObject)); $returnValue = $accessor(); return $returnValue; } public function __unset($name) { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, '__unset', array('name' => $name), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; $realInstanceReflection = new \ReflectionClass('App\\Services\\SeoService'); if (! $realInstanceReflection->hasProperty($name)) { $targetObject = $this->valueHolder4046c; unset($targetObject->$name); return; } $targetObject = $this->valueHolder4046c; $accessor = function () use ($targetObject, $name) { unset($targetObject->$name); return; }; $backtrace = debug_backtrace(true, 2); $scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub(); $accessor = $accessor->bindTo($scopeObject, get_class($scopeObject)); $accessor(); } public function __clone() { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, '__clone', array(), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; $this->valueHolder4046c = clone $this->valueHolder4046c; } public function __sleep() { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, '__sleep', array(), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; return array('valueHolder4046c'); } public function __wakeup() { \Closure::bind(function (\App\Services\SeoService $instance) { unset($instance->em, $instance->container, $instance->twig); }, $this, 'App\\Services\\SeoService')->__invoke($this); } public function setProxyInitializer(?\Closure $initializer = null) : void { $this->initializer9f5cb = $initializer; } public function getProxyInitializer() : ?\Closure { return $this->initializer9f5cb; } public function initializeProxy() : bool { return $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, 'initializeProxy', array(), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; } public function isProxyInitialized() : bool { return null !== $this->valueHolder4046c; } public function getWrappedValueHolderValue() { return $this->valueHolder4046c; }}if (!\class_exists('SeoService_4eb7b66', false)) { \class_alias(__NAMESPACE__.'\\SeoService_4eb7b66', 'SeoService_4eb7b66', false);}