var/cache/website/dev/ContainerIgDv0Tx/CustomUrlRequestProcessor_292b929.php line 27

Open in your IDE?
  1. <?php
  2. namespace ContainerIgDv0Tx;
  3. include_once \dirname(__DIR__, 5).'/vendor/sulu/sulu/src/Sulu/Bundle/CustomUrlBundle/Request/CustomUrlRequestProcessor.php';
  4. class CustomUrlRequestProcessor_292b929 extends \Sulu\Bundle\CustomUrlBundle\Request\CustomUrlRequestProcessor implements \ProxyManager\Proxy\VirtualProxyInterface
  5. {
  6. /**
  7. * @var \Sulu\Bundle\CustomUrlBundle\Request\CustomUrlRequestProcessor|null wrapped object, if the proxy is initialized
  8. */
  9. private $valueHolder6b0ae = null;
  10. /**
  11. * @var \Closure|null initializer responsible for generating the wrapped object
  12. */
  13. private $initializer9fd68 = null;
  14. /**
  15. * @var bool[] map of public properties of the parent class
  16. */
  17. private static $publicProperties7d3c4 = [
  18. ];
  19. public function process(\Symfony\Component\HttpFoundation\Request $request, \Sulu\Component\Webspace\Analyzer\Attributes\RequestAttributes $requestAttributes)
  20. {
  21. $this->initializer9fd68 && ($this->initializer9fd68->__invoke($valueHolder6b0ae, $this, 'process', array('request' => $request, 'requestAttributes' => $requestAttributes), $this->initializer9fd68) || 1) && $this->valueHolder6b0ae = $valueHolder6b0ae;
  22. return $this->valueHolder6b0ae->process($request, $requestAttributes);
  23. }
  24. public function validate(\Sulu\Component\Webspace\Analyzer\Attributes\RequestAttributes $attributes)
  25. {
  26. $this->initializer9fd68 && ($this->initializer9fd68->__invoke($valueHolder6b0ae, $this, 'validate', array('attributes' => $attributes), $this->initializer9fd68) || 1) && $this->valueHolder6b0ae = $valueHolder6b0ae;
  27. return $this->valueHolder6b0ae->validate($attributes);
  28. }
  29. /**
  30. * Constructor for lazy initialization
  31. *
  32. * @param \Closure|null $initializer
  33. */
  34. public static function staticProxyConstructor($initializer)
  35. {
  36. static $reflection;
  37. $reflection = $reflection ?? new \ReflectionClass(__CLASS__);
  38. $instance = $reflection->newInstanceWithoutConstructor();
  39. \Closure::bind(function (\Sulu\Bundle\CustomUrlBundle\Request\CustomUrlRequestProcessor $instance) {
  40. unset($instance->customUrlManager, $instance->generator, $instance->webspaceManager, $instance->environment);
  41. }, $instance, 'Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor')->__invoke($instance);
  42. $instance->initializer9fd68 = $initializer;
  43. return $instance;
  44. }
  45. public function __construct(\Sulu\Component\CustomUrl\Manager\CustomUrlManagerInterface $customUrlManager, \Sulu\Component\CustomUrl\Generator\GeneratorInterface $generator, \Sulu\Component\Webspace\Manager\WebspaceManagerInterface $webspaceManager, $environment)
  46. {
  47. static $reflection;
  48. if (! $this->valueHolder6b0ae) {
  49. $reflection = $reflection ?? new \ReflectionClass('Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor');
  50. $this->valueHolder6b0ae = $reflection->newInstanceWithoutConstructor();
  51. \Closure::bind(function (\Sulu\Bundle\CustomUrlBundle\Request\CustomUrlRequestProcessor $instance) {
  52. unset($instance->customUrlManager, $instance->generator, $instance->webspaceManager, $instance->environment);
  53. }, $this, 'Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor')->__invoke($this);
  54. }
  55. $this->valueHolder6b0ae->__construct($customUrlManager, $generator, $webspaceManager, $environment);
  56. }
  57. public function & __get($name)
  58. {
  59. $this->initializer9fd68 && ($this->initializer9fd68->__invoke($valueHolder6b0ae, $this, '__get', ['name' => $name], $this->initializer9fd68) || 1) && $this->valueHolder6b0ae = $valueHolder6b0ae;
  60. if (isset(self::$publicProperties7d3c4[$name])) {
  61. return $this->valueHolder6b0ae->$name;
  62. }
  63. $realInstanceReflection = new \ReflectionClass('Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor');
  64. if (! $realInstanceReflection->hasProperty($name)) {
  65. $targetObject = $this->valueHolder6b0ae;
  66. $backtrace = debug_backtrace(false, 1);
  67. trigger_error(
  68. sprintf(
  69. 'Undefined property: %s::$%s in %s on line %s',
  70. $realInstanceReflection->getName(),
  71. $name,
  72. $backtrace[0]['file'],
  73. $backtrace[0]['line']
  74. ),
  75. \E_USER_NOTICE
  76. );
  77. return $targetObject->$name;
  78. }
  79. $targetObject = $this->valueHolder6b0ae;
  80. $accessor = function & () use ($targetObject, $name) {
  81. return $targetObject->$name;
  82. };
  83. $backtrace = debug_backtrace(true, 2);
  84. $scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub();
  85. $accessor = $accessor->bindTo($scopeObject, get_class($scopeObject));
  86. $returnValue = & $accessor();
  87. return $returnValue;
  88. }
  89. public function __set($name, $value)
  90. {
  91. $this->initializer9fd68 && ($this->initializer9fd68->__invoke($valueHolder6b0ae, $this, '__set', array('name' => $name, 'value' => $value), $this->initializer9fd68) || 1) && $this->valueHolder6b0ae = $valueHolder6b0ae;
  92. $realInstanceReflection = new \ReflectionClass('Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor');
  93. if (! $realInstanceReflection->hasProperty($name)) {
  94. $targetObject = $this->valueHolder6b0ae;
  95. $targetObject->$name = $value;
  96. return $targetObject->$name;
  97. }
  98. $targetObject = $this->valueHolder6b0ae;
  99. $accessor = function & () use ($targetObject, $name, $value) {
  100. $targetObject->$name = $value;
  101. return $targetObject->$name;
  102. };
  103. $backtrace = debug_backtrace(true, 2);
  104. $scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub();
  105. $accessor = $accessor->bindTo($scopeObject, get_class($scopeObject));
  106. $returnValue = & $accessor();
  107. return $returnValue;
  108. }
  109. public function __isset($name)
  110. {
  111. $this->initializer9fd68 && ($this->initializer9fd68->__invoke($valueHolder6b0ae, $this, '__isset', array('name' => $name), $this->initializer9fd68) || 1) && $this->valueHolder6b0ae = $valueHolder6b0ae;
  112. $realInstanceReflection = new \ReflectionClass('Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor');
  113. if (! $realInstanceReflection->hasProperty($name)) {
  114. $targetObject = $this->valueHolder6b0ae;
  115. return isset($targetObject->$name);
  116. }
  117. $targetObject = $this->valueHolder6b0ae;
  118. $accessor = function () use ($targetObject, $name) {
  119. return isset($targetObject->$name);
  120. };
  121. $backtrace = debug_backtrace(true, 2);
  122. $scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub();
  123. $accessor = $accessor->bindTo($scopeObject, get_class($scopeObject));
  124. $returnValue = $accessor();
  125. return $returnValue;
  126. }
  127. public function __unset($name)
  128. {
  129. $this->initializer9fd68 && ($this->initializer9fd68->__invoke($valueHolder6b0ae, $this, '__unset', array('name' => $name), $this->initializer9fd68) || 1) && $this->valueHolder6b0ae = $valueHolder6b0ae;
  130. $realInstanceReflection = new \ReflectionClass('Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor');
  131. if (! $realInstanceReflection->hasProperty($name)) {
  132. $targetObject = $this->valueHolder6b0ae;
  133. unset($targetObject->$name);
  134. return;
  135. }
  136. $targetObject = $this->valueHolder6b0ae;
  137. $accessor = function () use ($targetObject, $name) {
  138. unset($targetObject->$name);
  139. return;
  140. };
  141. $backtrace = debug_backtrace(true, 2);
  142. $scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub();
  143. $accessor = $accessor->bindTo($scopeObject, get_class($scopeObject));
  144. $accessor();
  145. }
  146. public function __clone()
  147. {
  148. $this->initializer9fd68 && ($this->initializer9fd68->__invoke($valueHolder6b0ae, $this, '__clone', array(), $this->initializer9fd68) || 1) && $this->valueHolder6b0ae = $valueHolder6b0ae;
  149. $this->valueHolder6b0ae = clone $this->valueHolder6b0ae;
  150. }
  151. public function __sleep()
  152. {
  153. $this->initializer9fd68 && ($this->initializer9fd68->__invoke($valueHolder6b0ae, $this, '__sleep', array(), $this->initializer9fd68) || 1) && $this->valueHolder6b0ae = $valueHolder6b0ae;
  154. return array('valueHolder6b0ae');
  155. }
  156. public function __wakeup()
  157. {
  158. \Closure::bind(function (\Sulu\Bundle\CustomUrlBundle\Request\CustomUrlRequestProcessor $instance) {
  159. unset($instance->customUrlManager, $instance->generator, $instance->webspaceManager, $instance->environment);
  160. }, $this, 'Sulu\\Bundle\\CustomUrlBundle\\Request\\CustomUrlRequestProcessor')->__invoke($this);
  161. }
  162. public function setProxyInitializer(?\Closure $initializer = null) : void
  163. {
  164. $this->initializer9fd68 = $initializer;
  165. }
  166. public function getProxyInitializer() : ?\Closure
  167. {
  168. return $this->initializer9fd68;
  169. }
  170. public function initializeProxy() : bool
  171. {
  172. return $this->initializer9fd68 && ($this->initializer9fd68->__invoke($valueHolder6b0ae, $this, 'initializeProxy', array(), $this->initializer9fd68) || 1) && $this->valueHolder6b0ae = $valueHolder6b0ae;
  173. }
  174. public function isProxyInitialized() : bool
  175. {
  176. return null !== $this->valueHolder6b0ae;
  177. }
  178. public function getWrappedValueHolderValue()
  179. {
  180. return $this->valueHolder6b0ae;
  181. }
  182. }
  183. if (!\class_exists('CustomUrlRequestProcessor_292b929', false)) {
  184. \class_alias(__NAMESPACE__.'\\CustomUrlRequestProcessor_292b929', 'CustomUrlRequestProcessor_292b929', false);
  185. }