<?php
namespace ContainerFRgCiKS;
include_once \dirname(__DIR__, 5).'/vendor/sulu/sulu/src/Sulu/Bundle/CustomUrlBundle/Request/CustomUrlRequestProcessor.php';
class CustomUrlRequestProcessor_292b929 extends \Sulu\Bundle\CustomUrlBundle\Request\CustomUrlRequestProcessor implements \ProxyManager\Proxy\VirtualProxyInterface
{
/**
* @var \Sulu\Bundle\CustomUrlBundle\Request\CustomUrlRequestProcessor|null wrapped object, if the proxy is initialized
*/
private $valueHolderfd859 = null;
/**
* @var \Closure|null initializer responsible for generating the wrapped object
*/
private $initializere4760 = null;
/**
* @var bool[] map of public properties of the parent class
*/
private static $publicPropertiesc29d7 = [
];
public function process(\Symfony\Component\HttpFoundation\Request $request, \Sulu\Component\Webspace\Analyzer\Attributes\RequestAttributes $requestAttributes)
{
$this->initializere4760 && ($this->initializere4760->__invoke($valueHolderfd859, $this, 'process', array('request' => $request, 'requestAttributes' => $requestAttributes), $this->initializere4760) || 1) && $this->valueHolderfd859 = $valueHolderfd859;
return $this->valueHolderfd859->process($request, $requestAttributes);
}
public function validate(\Sulu\Component\Webspace\Analyzer\Attributes\RequestAttributes $attributes)
{
$this->initializere4760 && ($this->initializere4760->__invoke($valueHolderfd859, $this, 'validate', array('attributes' => $attributes), $this->initializere4760) || 1) && $this->valueHolderfd859 = $valueHolderfd859;
return $this->valueHolderfd859->validate($attributes);
}
/**
* 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 (\Sulu\Bundle\CustomUrlBundle\Request\CustomUrlRequestProcessor $instance) {
unset($instance->customUrlManager, $instance->generator, $instance->webspaceManager, $instance->environment);
}, $instance, 'Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor')->__invoke($instance);
$instance->initializere4760 = $initializer;
return $instance;
}
public function __construct(\Sulu\Component\CustomUrl\Manager\CustomUrlManagerInterface $customUrlManager, \Sulu\Component\CustomUrl\Generator\GeneratorInterface $generator, \Sulu\Component\Webspace\Manager\WebspaceManagerInterface $webspaceManager, $environment)
{
static $reflection;
if (! $this->valueHolderfd859) {
$reflection = $reflection ?? new \ReflectionClass('Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor');
$this->valueHolderfd859 = $reflection->newInstanceWithoutConstructor();
\Closure::bind(function (\Sulu\Bundle\CustomUrlBundle\Request\CustomUrlRequestProcessor $instance) {
unset($instance->customUrlManager, $instance->generator, $instance->webspaceManager, $instance->environment);
}, $this, 'Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor')->__invoke($this);
}
$this->valueHolderfd859->__construct($customUrlManager, $generator, $webspaceManager, $environment);
}
public function & __get($name)
{
$this->initializere4760 && ($this->initializere4760->__invoke($valueHolderfd859, $this, '__get', ['name' => $name], $this->initializere4760) || 1) && $this->valueHolderfd859 = $valueHolderfd859;
if (isset(self::$publicPropertiesc29d7[$name])) {
return $this->valueHolderfd859->$name;
}
$realInstanceReflection = new \ReflectionClass('Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor');
if (! $realInstanceReflection->hasProperty($name)) {
$targetObject = $this->valueHolderfd859;
$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->valueHolderfd859;
$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->initializere4760 && ($this->initializere4760->__invoke($valueHolderfd859, $this, '__set', array('name' => $name, 'value' => $value), $this->initializere4760) || 1) && $this->valueHolderfd859 = $valueHolderfd859;
$realInstanceReflection = new \ReflectionClass('Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor');
if (! $realInstanceReflection->hasProperty($name)) {
$targetObject = $this->valueHolderfd859;
$targetObject->$name = $value;
return $targetObject->$name;
}
$targetObject = $this->valueHolderfd859;
$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->initializere4760 && ($this->initializere4760->__invoke($valueHolderfd859, $this, '__isset', array('name' => $name), $this->initializere4760) || 1) && $this->valueHolderfd859 = $valueHolderfd859;
$realInstanceReflection = new \ReflectionClass('Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor');
if (! $realInstanceReflection->hasProperty($name)) {
$targetObject = $this->valueHolderfd859;
return isset($targetObject->$name);
}
$targetObject = $this->valueHolderfd859;
$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->initializere4760 && ($this->initializere4760->__invoke($valueHolderfd859, $this, '__unset', array('name' => $name), $this->initializere4760) || 1) && $this->valueHolderfd859 = $valueHolderfd859;
$realInstanceReflection = new \ReflectionClass('Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor');
if (! $realInstanceReflection->hasProperty($name)) {
$targetObject = $this->valueHolderfd859;
unset($targetObject->$name);
return;
}
$targetObject = $this->valueHolderfd859;
$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->initializere4760 && ($this->initializere4760->__invoke($valueHolderfd859, $this, '__clone', array(), $this->initializere4760) || 1) && $this->valueHolderfd859 = $valueHolderfd859;
$this->valueHolderfd859 = clone $this->valueHolderfd859;
}
public function __sleep()
{
$this->initializere4760 && ($this->initializere4760->__invoke($valueHolderfd859, $this, '__sleep', array(), $this->initializere4760) || 1) && $this->valueHolderfd859 = $valueHolderfd859;
return array('valueHolderfd859');
}
public function __wakeup()
{
\Closure::bind(function (\Sulu\Bundle\CustomUrlBundle\Request\CustomUrlRequestProcessor $instance) {
unset($instance->customUrlManager, $instance->generator, $instance->webspaceManager, $instance->environment);
}, $this, 'Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor')->__invoke($this);
}
public function setProxyInitializer(?\Closure $initializer = null) : void
{
$this->initializere4760 = $initializer;
}
public function getProxyInitializer() : ?\Closure
{
return $this->initializere4760;
}
public function initializeProxy() : bool
{
return $this->initializere4760 && ($this->initializere4760->__invoke($valueHolderfd859, $this, 'initializeProxy', array(), $this->initializere4760) || 1) && $this->valueHolderfd859 = $valueHolderfd859;
}
public function isProxyInitialized() : bool
{
return null !== $this->valueHolderfd859;
}
public function getWrappedValueHolderValue()
{
return $this->valueHolderfd859;
}
}
if (!\class_exists('CustomUrlRequestProcessor_292b929', false)) {
\class_alias(__NAMESPACE__.'\\CustomUrlRequestProcessor_292b929', 'CustomUrlRequestProcessor_292b929', false);
}