var/cache/dev/ContainerSzWx2pB/ReservationForm_7aadf40.php line 8

Open in your IDE?
  1. <?php
  2. namespace ContainerSzWx2pB;
  3. include_once \dirname(__DIR__, 4).'/vendor/symfony/form/FormTypeInterface.php';
  4. include_once \dirname(__DIR__, 4).'/vendor/symfony/form/AbstractType.php';
  5. include_once \dirname(__DIR__, 4).'/src/Form/ReservationForm.php';
  6. class ReservationForm_7aadf40 extends \App\Form\ReservationForm implements \ProxyManager\Proxy\VirtualProxyInterface
  7. {
  8. /**
  9. * @var \App\Form\ReservationForm|null wrapped object, if the proxy is initialized
  10. */
  11. private $valueHolderc78ef = null;
  12. /**
  13. * @var \Closure|null initializer responsible for generating the wrapped object
  14. */
  15. private $initializera61be = null;
  16. /**
  17. * @var bool[] map of public properties of the parent class
  18. */
  19. private static $publicProperties4a11e = [
  20. ];
  21. public function buildForm(\Symfony\Component\Form\FormBuilderInterface $builder, array $options)
  22. {
  23. $this->initializera61be && ($this->initializera61be->__invoke($valueHolderc78ef, $this, 'buildForm', array('builder' => $builder, 'options' => $options), $this->initializera61be) || 1) && $this->valueHolderc78ef = $valueHolderc78ef;
  24. return $this->valueHolderc78ef->buildForm($builder, $options);
  25. }
  26. public function configureOptions(\Symfony\Component\OptionsResolver\OptionsResolver $resolver)
  27. {
  28. $this->initializera61be && ($this->initializera61be->__invoke($valueHolderc78ef, $this, 'configureOptions', array('resolver' => $resolver), $this->initializera61be) || 1) && $this->valueHolderc78ef = $valueHolderc78ef;
  29. return $this->valueHolderc78ef->configureOptions($resolver);
  30. }
  31. public function getName()
  32. {
  33. $this->initializera61be && ($this->initializera61be->__invoke($valueHolderc78ef, $this, 'getName', array(), $this->initializera61be) || 1) && $this->valueHolderc78ef = $valueHolderc78ef;
  34. return $this->valueHolderc78ef->getName();
  35. }
  36. public function buildView(\Symfony\Component\Form\FormView $view, \Symfony\Component\Form\FormInterface $form, array $options)
  37. {
  38. $this->initializera61be && ($this->initializera61be->__invoke($valueHolderc78ef, $this, 'buildView', array('view' => $view, 'form' => $form, 'options' => $options), $this->initializera61be) || 1) && $this->valueHolderc78ef = $valueHolderc78ef;
  39. return $this->valueHolderc78ef->buildView($view, $form, $options);
  40. }
  41. public function finishView(\Symfony\Component\Form\FormView $view, \Symfony\Component\Form\FormInterface $form, array $options)
  42. {
  43. $this->initializera61be && ($this->initializera61be->__invoke($valueHolderc78ef, $this, 'finishView', array('view' => $view, 'form' => $form, 'options' => $options), $this->initializera61be) || 1) && $this->valueHolderc78ef = $valueHolderc78ef;
  44. return $this->valueHolderc78ef->finishView($view, $form, $options);
  45. }
  46. public function getBlockPrefix()
  47. {
  48. $this->initializera61be && ($this->initializera61be->__invoke($valueHolderc78ef, $this, 'getBlockPrefix', array(), $this->initializera61be) || 1) && $this->valueHolderc78ef = $valueHolderc78ef;
  49. return $this->valueHolderc78ef->getBlockPrefix();
  50. }
  51. public function getParent()
  52. {
  53. $this->initializera61be && ($this->initializera61be->__invoke($valueHolderc78ef, $this, 'getParent', array(), $this->initializera61be) || 1) && $this->valueHolderc78ef = $valueHolderc78ef;
  54. return $this->valueHolderc78ef->getParent();
  55. }
  56. /**
  57. * Constructor for lazy initialization
  58. *
  59. * @param \Closure|null $initializer
  60. */
  61. public static function staticProxyConstructor($initializer)
  62. {
  63. static $reflection;
  64. $reflection = $reflection ?? new \ReflectionClass(__CLASS__);
  65. $instance = $reflection->newInstanceWithoutConstructor();
  66. $instance->initializera61be = $initializer;
  67. return $instance;
  68. }
  69. public function __construct()
  70. {
  71. static $reflection;
  72. if (! $this->valueHolderc78ef) {
  73. $reflection = $reflection ?? new \ReflectionClass('App\\Form\\ReservationForm');
  74. $this->valueHolderc78ef = $reflection->newInstanceWithoutConstructor();
  75. }
  76. }
  77. public function & __get($name)
  78. {
  79. $this->initializera61be && ($this->initializera61be->__invoke($valueHolderc78ef, $this, '__get', ['name' => $name], $this->initializera61be) || 1) && $this->valueHolderc78ef = $valueHolderc78ef;
  80. if (isset(self::$publicProperties4a11e[$name])) {
  81. return $this->valueHolderc78ef->$name;
  82. }
  83. $realInstanceReflection = new \ReflectionClass('App\\Form\\ReservationForm');
  84. if (! $realInstanceReflection->hasProperty($name)) {
  85. $targetObject = $this->valueHolderc78ef;
  86. $backtrace = debug_backtrace(false, 1);
  87. trigger_error(
  88. sprintf(
  89. 'Undefined property: %s::$%s in %s on line %s',
  90. $realInstanceReflection->getName(),
  91. $name,
  92. $backtrace[0]['file'],
  93. $backtrace[0]['line']
  94. ),
  95. \E_USER_NOTICE
  96. );
  97. return $targetObject->$name;
  98. }
  99. $targetObject = $this->valueHolderc78ef;
  100. $accessor = function & () use ($targetObject, $name) {
  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 __set($name, $value)
  110. {
  111. $this->initializera61be && ($this->initializera61be->__invoke($valueHolderc78ef, $this, '__set', array('name' => $name, 'value' => $value), $this->initializera61be) || 1) && $this->valueHolderc78ef = $valueHolderc78ef;
  112. $realInstanceReflection = new \ReflectionClass('App\\Form\\ReservationForm');
  113. if (! $realInstanceReflection->hasProperty($name)) {
  114. $targetObject = $this->valueHolderc78ef;
  115. $targetObject->$name = $value;
  116. return $targetObject->$name;
  117. }
  118. $targetObject = $this->valueHolderc78ef;
  119. $accessor = function & () use ($targetObject, $name, $value) {
  120. $targetObject->$name = $value;
  121. return $targetObject->$name;
  122. };
  123. $backtrace = debug_backtrace(true, 2);
  124. $scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub();
  125. $accessor = $accessor->bindTo($scopeObject, get_class($scopeObject));
  126. $returnValue = & $accessor();
  127. return $returnValue;
  128. }
  129. public function __isset($name)
  130. {
  131. $this->initializera61be && ($this->initializera61be->__invoke($valueHolderc78ef, $this, '__isset', array('name' => $name), $this->initializera61be) || 1) && $this->valueHolderc78ef = $valueHolderc78ef;
  132. $realInstanceReflection = new \ReflectionClass('App\\Form\\ReservationForm');
  133. if (! $realInstanceReflection->hasProperty($name)) {
  134. $targetObject = $this->valueHolderc78ef;
  135. return isset($targetObject->$name);
  136. }
  137. $targetObject = $this->valueHolderc78ef;
  138. $accessor = function () use ($targetObject, $name) {
  139. return isset($targetObject->$name);
  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. $returnValue = $accessor();
  145. return $returnValue;
  146. }
  147. public function __unset($name)
  148. {
  149. $this->initializera61be && ($this->initializera61be->__invoke($valueHolderc78ef, $this, '__unset', array('name' => $name), $this->initializera61be) || 1) && $this->valueHolderc78ef = $valueHolderc78ef;
  150. $realInstanceReflection = new \ReflectionClass('App\\Form\\ReservationForm');
  151. if (! $realInstanceReflection->hasProperty($name)) {
  152. $targetObject = $this->valueHolderc78ef;
  153. unset($targetObject->$name);
  154. return;
  155. }
  156. $targetObject = $this->valueHolderc78ef;
  157. $accessor = function () use ($targetObject, $name) {
  158. unset($targetObject->$name);
  159. return;
  160. };
  161. $backtrace = debug_backtrace(true, 2);
  162. $scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub();
  163. $accessor = $accessor->bindTo($scopeObject, get_class($scopeObject));
  164. $accessor();
  165. }
  166. public function __clone()
  167. {
  168. $this->initializera61be && ($this->initializera61be->__invoke($valueHolderc78ef, $this, '__clone', array(), $this->initializera61be) || 1) && $this->valueHolderc78ef = $valueHolderc78ef;
  169. $this->valueHolderc78ef = clone $this->valueHolderc78ef;
  170. }
  171. public function __sleep()
  172. {
  173. $this->initializera61be && ($this->initializera61be->__invoke($valueHolderc78ef, $this, '__sleep', array(), $this->initializera61be) || 1) && $this->valueHolderc78ef = $valueHolderc78ef;
  174. return array('valueHolderc78ef');
  175. }
  176. public function __wakeup()
  177. {
  178. }
  179. public function setProxyInitializer(?\Closure $initializer = null): void
  180. {
  181. $this->initializera61be = $initializer;
  182. }
  183. public function getProxyInitializer(): ?\Closure
  184. {
  185. return $this->initializera61be;
  186. }
  187. public function initializeProxy(): bool
  188. {
  189. return $this->initializera61be && ($this->initializera61be->__invoke($valueHolderc78ef, $this, 'initializeProxy', array(), $this->initializera61be) || 1) && $this->valueHolderc78ef = $valueHolderc78ef;
  190. }
  191. public function isProxyInitialized(): bool
  192. {
  193. return null !== $this->valueHolderc78ef;
  194. }
  195. public function getWrappedValueHolderValue()
  196. {
  197. return $this->valueHolderc78ef;
  198. }
  199. }
  200. if (!\class_exists('ReservationForm_7aadf40', false)) {
  201. \class_alias(__NAMESPACE__.'\\ReservationForm_7aadf40', 'ReservationForm_7aadf40', false);
  202. }