var/cache/dev/doctrine/orm/Proxies/__CG__AppEntityStudent.php line 242

Open in your IDE?
  1. <?php
  2. namespace Proxies\__CG__\App\Entity;
  3. /**
  4. * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
  5. */
  6. class Student extends \App\Entity\Student implements \Doctrine\ORM\Proxy\Proxy
  7. {
  8. /**
  9. * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with
  10. * three parameters, being respectively the proxy object to be initialized, the method that triggered the
  11. * initialization process and an array of ordered parameters that were passed to that method.
  12. *
  13. * @see \Doctrine\Common\Proxy\Proxy::__setInitializer
  14. */
  15. public $__initializer__;
  16. /**
  17. * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object
  18. *
  19. * @see \Doctrine\Common\Proxy\Proxy::__setCloner
  20. */
  21. public $__cloner__;
  22. /**
  23. * @var boolean flag indicating if this object was already initialized
  24. *
  25. * @see \Doctrine\Persistence\Proxy::__isInitialized
  26. */
  27. public $__isInitialized__ = false;
  28. /**
  29. * @var array<string, null> properties to be lazy loaded, indexed by property name
  30. */
  31. public static $lazyPropertiesNames = array (
  32. );
  33. /**
  34. * @var array<string, mixed> default values of properties to be lazy loaded, with keys being the property names
  35. *
  36. * @see \Doctrine\Common\Proxy\Proxy::__getLazyProperties
  37. */
  38. public static $lazyPropertiesDefaults = array (
  39. );
  40. public function __construct(?\Closure $initializer = null, ?\Closure $cloner = null)
  41. {
  42. $this->__initializer__ = $initializer;
  43. $this->__cloner__ = $cloner;
  44. }
  45. /**
  46. *
  47. * @return array
  48. */
  49. public function __sleep()
  50. {
  51. if ($this->__isInitialized__) {
  52. return ['__isInitialized__', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'id', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'imageFile', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'matricule', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'firstname', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'lastname', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'particularDisease', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'fatherName', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'motherName', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'primaryContact', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'residence', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'secondaryContact', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'otherInformations', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'birthday', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'gender', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'birthplace', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'enrolled', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'subscriptions', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'payments', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'entryClass', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'createdAt', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'updatedAt', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'imageName'];
  53. }
  54. return ['__isInitialized__', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'id', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'imageFile', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'matricule', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'firstname', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'lastname', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'particularDisease', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'fatherName', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'motherName', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'primaryContact', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'residence', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'secondaryContact', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'otherInformations', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'birthday', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'gender', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'birthplace', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'enrolled', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'subscriptions', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'payments', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'entryClass', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'createdAt', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'updatedAt', '' . "\0" . 'App\\Entity\\Student' . "\0" . 'imageName'];
  55. }
  56. /**
  57. *
  58. */
  59. public function __wakeup()
  60. {
  61. if ( ! $this->__isInitialized__) {
  62. $this->__initializer__ = function (Student $proxy) {
  63. $proxy->__setInitializer(null);
  64. $proxy->__setCloner(null);
  65. $existingProperties = get_object_vars($proxy);
  66. foreach ($proxy::$lazyPropertiesDefaults as $property => $defaultValue) {
  67. if ( ! array_key_exists($property, $existingProperties)) {
  68. $proxy->$property = $defaultValue;
  69. }
  70. }
  71. };
  72. }
  73. }
  74. /**
  75. *
  76. */
  77. public function __clone()
  78. {
  79. $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []);
  80. }
  81. /**
  82. * Forces initialization of the proxy
  83. */
  84. public function __load(): void
  85. {
  86. $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []);
  87. }
  88. /**
  89. * {@inheritDoc}
  90. * @internal generated method: use only when explicitly handling proxy specific loading logic
  91. */
  92. public function __isInitialized(): bool
  93. {
  94. return $this->__isInitialized__;
  95. }
  96. /**
  97. * {@inheritDoc}
  98. * @internal generated method: use only when explicitly handling proxy specific loading logic
  99. */
  100. public function __setInitialized($initialized): void
  101. {
  102. $this->__isInitialized__ = $initialized;
  103. }
  104. /**
  105. * {@inheritDoc}
  106. * @internal generated method: use only when explicitly handling proxy specific loading logic
  107. */
  108. public function __setInitializer(?\Closure $initializer = null): void
  109. {
  110. $this->__initializer__ = $initializer;
  111. }
  112. /**
  113. * {@inheritDoc}
  114. * @internal generated method: use only when explicitly handling proxy specific loading logic
  115. */
  116. public function __getInitializer(): ?\Closure
  117. {
  118. return $this->__initializer__;
  119. }
  120. /**
  121. * {@inheritDoc}
  122. * @internal generated method: use only when explicitly handling proxy specific loading logic
  123. */
  124. public function __setCloner(?\Closure $cloner = null): void
  125. {
  126. $this->__cloner__ = $cloner;
  127. }
  128. /**
  129. * {@inheritDoc}
  130. * @internal generated method: use only when explicitly handling proxy specific cloning logic
  131. */
  132. public function __getCloner(): ?\Closure
  133. {
  134. return $this->__cloner__;
  135. }
  136. /**
  137. * {@inheritDoc}
  138. * @internal generated method: use only when explicitly handling proxy specific loading logic
  139. * @deprecated no longer in use - generated code now relies on internal components rather than generated public API
  140. * @static
  141. */
  142. public function __getLazyProperties(): array
  143. {
  144. return self::$lazyPropertiesDefaults;
  145. }
  146. /**
  147. * {@inheritDoc}
  148. */
  149. public function getUpdated()
  150. {
  151. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []);
  152. return parent::getUpdated();
  153. }
  154. /**
  155. * {@inheritDoc}
  156. */
  157. public function getId(): ?int
  158. {
  159. if ($this->__isInitialized__ === false) {
  160. return (int) parent::getId();
  161. }
  162. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []);
  163. return parent::getId();
  164. }
  165. /**
  166. * {@inheritDoc}
  167. */
  168. public function __toString(): string
  169. {
  170. $this->__initializer__ && $this->__initializer__->__invoke($this, '__toString', []);
  171. return parent::__toString();
  172. }
  173. /**
  174. * {@inheritDoc}
  175. */
  176. public function fullName()
  177. {
  178. $this->__initializer__ && $this->__initializer__->__invoke($this, 'fullName', []);
  179. return parent::fullName();
  180. }
  181. /**
  182. * {@inheritDoc}
  183. */
  184. public function setMatricule($matricule)
  185. {
  186. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setMatricule', [$matricule]);
  187. return parent::setMatricule($matricule);
  188. }
  189. /**
  190. * {@inheritDoc}
  191. */
  192. public function getMatricule()
  193. {
  194. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getMatricule', []);
  195. return parent::getMatricule();
  196. }
  197. /**
  198. * {@inheritDoc}
  199. */
  200. public function setParticularDisease($particularDisease)
  201. {
  202. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setParticularDisease', [$particularDisease]);
  203. return parent::setParticularDisease($particularDisease);
  204. }
  205. /**
  206. * {@inheritDoc}
  207. */
  208. public function getParticularDisease()
  209. {
  210. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getParticularDisease', []);
  211. return parent::getParticularDisease();
  212. }
  213. /**
  214. * {@inheritDoc}
  215. */
  216. public function setFatherName($fatherName)
  217. {
  218. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFatherName', [$fatherName]);
  219. return parent::setFatherName($fatherName);
  220. }
  221. /**
  222. * {@inheritDoc}
  223. */
  224. public function getFatherName()
  225. {
  226. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFatherName', []);
  227. return parent::getFatherName();
  228. }
  229. /**
  230. * {@inheritDoc}
  231. */
  232. public function setMotherName($motherName)
  233. {
  234. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setMotherName', [$motherName]);
  235. return parent::setMotherName($motherName);
  236. }
  237. /**
  238. * {@inheritDoc}
  239. */
  240. public function getMotherName()
  241. {
  242. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getMotherName', []);
  243. return parent::getMotherName();
  244. }
  245. /**
  246. * {@inheritDoc}
  247. */
  248. public function setPrimaryContact($primaryContact)
  249. {
  250. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPrimaryContact', [$primaryContact]);
  251. return parent::setPrimaryContact($primaryContact);
  252. }
  253. /**
  254. * {@inheritDoc}
  255. */
  256. public function getPrimaryContact()
  257. {
  258. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPrimaryContact', []);
  259. return parent::getPrimaryContact();
  260. }
  261. /**
  262. * {@inheritDoc}
  263. */
  264. public function setSecondaryContact($secondaryContact)
  265. {
  266. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSecondaryContact', [$secondaryContact]);
  267. return parent::setSecondaryContact($secondaryContact);
  268. }
  269. /**
  270. * {@inheritDoc}
  271. */
  272. public function getSecondaryContact()
  273. {
  274. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSecondaryContact', []);
  275. return parent::getSecondaryContact();
  276. }
  277. /**
  278. * {@inheritDoc}
  279. */
  280. public function setOtherInformations($otherInformations)
  281. {
  282. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOtherInformations', [$otherInformations]);
  283. return parent::setOtherInformations($otherInformations);
  284. }
  285. /**
  286. * {@inheritDoc}
  287. */
  288. public function getOtherInformations()
  289. {
  290. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOtherInformations', []);
  291. return parent::getOtherInformations();
  292. }
  293. /**
  294. * {@inheritDoc}
  295. */
  296. public function setGender($gender)
  297. {
  298. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setGender', [$gender]);
  299. return parent::setGender($gender);
  300. }
  301. /**
  302. * {@inheritDoc}
  303. */
  304. public function getGender()
  305. {
  306. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getGender', []);
  307. return parent::getGender();
  308. }
  309. /**
  310. * {@inheritDoc}
  311. */
  312. public function setBirthplace($birthplace)
  313. {
  314. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBirthplace', [$birthplace]);
  315. return parent::setBirthplace($birthplace);
  316. }
  317. /**
  318. * {@inheritDoc}
  319. */
  320. public function getBirthplace()
  321. {
  322. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBirthplace', []);
  323. return parent::getBirthplace();
  324. }
  325. /**
  326. * {@inheritDoc}
  327. */
  328. public function setLevel(\App\Entity\Level $level)
  329. {
  330. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLevel', [$level]);
  331. return parent::setLevel($level);
  332. }
  333. /**
  334. * {@inheritDoc}
  335. */
  336. public function getLevel()
  337. {
  338. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLevel', []);
  339. return parent::getLevel();
  340. }
  341. /**
  342. * {@inheritDoc}
  343. */
  344. public function setUpdated($updated)
  345. {
  346. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]);
  347. return parent::setUpdated($updated);
  348. }
  349. /**
  350. * {@inheritDoc}
  351. */
  352. public function getClassRoom(\App\Entity\SchoolYear $year)
  353. {
  354. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getClassRoom', [$year]);
  355. return parent::getClassRoom($year);
  356. }
  357. /**
  358. * {@inheritDoc}
  359. */
  360. public function getPaymentsSum(\App\Entity\SchoolYear $year)
  361. {
  362. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPaymentsSum', [$year]);
  363. return parent::getPaymentsSum($year);
  364. }
  365. /**
  366. * {@inheritDoc}
  367. */
  368. public function setBirthday($birthday)
  369. {
  370. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBirthday', [$birthday]);
  371. return parent::setBirthday($birthday);
  372. }
  373. /**
  374. * {@inheritDoc}
  375. */
  376. public function getBirthday()
  377. {
  378. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBirthday', []);
  379. return parent::getBirthday();
  380. }
  381. /**
  382. * {@inheritDoc}
  383. */
  384. public function setFirstname($firstname)
  385. {
  386. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFirstname', [$firstname]);
  387. return parent::setFirstname($firstname);
  388. }
  389. /**
  390. * {@inheritDoc}
  391. */
  392. public function getFirstname()
  393. {
  394. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFirstname', []);
  395. return parent::getFirstname();
  396. }
  397. /**
  398. * {@inheritDoc}
  399. */
  400. public function setLastname($lastname)
  401. {
  402. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLastname', [$lastname]);
  403. return parent::setLastname($lastname);
  404. }
  405. /**
  406. * {@inheritDoc}
  407. */
  408. public function getLastname()
  409. {
  410. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLastname', []);
  411. return parent::getLastname();
  412. }
  413. /**
  414. * {@inheritDoc}
  415. */
  416. public function addMark(\App\Entity\Mark $mark)
  417. {
  418. $this->__initializer__ && $this->__initializer__->__invoke($this, 'addMark', [$mark]);
  419. return parent::addMark($mark);
  420. }
  421. /**
  422. * {@inheritDoc}
  423. */
  424. public function removeMark(\App\Entity\Mark $mark)
  425. {
  426. $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeMark', [$mark]);
  427. return parent::removeMark($mark);
  428. }
  429. /**
  430. * {@inheritDoc}
  431. */
  432. public function getMarks()
  433. {
  434. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getMarks', []);
  435. return parent::getMarks();
  436. }
  437. /**
  438. * {@inheritDoc}
  439. */
  440. public function setProfileImagePath($profileImagePath)
  441. {
  442. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setProfileImagePath', [$profileImagePath]);
  443. return parent::setProfileImagePath($profileImagePath);
  444. }
  445. /**
  446. * {@inheritDoc}
  447. */
  448. public function getProfileImagePath()
  449. {
  450. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getProfileImagePath', []);
  451. return parent::getProfileImagePath();
  452. }
  453. /**
  454. * {@inheritDoc}
  455. */
  456. public function setResidence($residence)
  457. {
  458. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setResidence', [$residence]);
  459. return parent::setResidence($residence);
  460. }
  461. /**
  462. * {@inheritDoc}
  463. */
  464. public function getResidence()
  465. {
  466. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getResidence', []);
  467. return parent::getResidence();
  468. }
  469. /**
  470. * {@inheritDoc}
  471. */
  472. public function getSubscriptions(): \Doctrine\Common\Collections\Collection
  473. {
  474. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSubscriptions', []);
  475. return parent::getSubscriptions();
  476. }
  477. /**
  478. * {@inheritDoc}
  479. */
  480. public function addSubscription(\App\Entity\Subscription $subscription): \App\Entity\Student
  481. {
  482. $this->__initializer__ && $this->__initializer__->__invoke($this, 'addSubscription', [$subscription]);
  483. return parent::addSubscription($subscription);
  484. }
  485. /**
  486. * {@inheritDoc}
  487. */
  488. public function removeSubscription(\App\Entity\Subscription $subscription): \App\Entity\Student
  489. {
  490. $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeSubscription', [$subscription]);
  491. return parent::removeSubscription($subscription);
  492. }
  493. /**
  494. * {@inheritDoc}
  495. */
  496. public function setEnrolled($enrolled)
  497. {
  498. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setEnrolled', [$enrolled]);
  499. return parent::setEnrolled($enrolled);
  500. }
  501. /**
  502. * {@inheritDoc}
  503. */
  504. public function getEnrolled()
  505. {
  506. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getEnrolled', []);
  507. return parent::getEnrolled();
  508. }
  509. /**
  510. * {@inheritDoc}
  511. */
  512. public function addPayment(\App\Entity\Payment $payment)
  513. {
  514. $this->__initializer__ && $this->__initializer__->__invoke($this, 'addPayment', [$payment]);
  515. return parent::addPayment($payment);
  516. }
  517. /**
  518. * {@inheritDoc}
  519. */
  520. public function removePayment(\App\Entity\Payment $payment)
  521. {
  522. $this->__initializer__ && $this->__initializer__->__invoke($this, 'removePayment', [$payment]);
  523. return parent::removePayment($payment);
  524. }
  525. /**
  526. * {@inheritDoc}
  527. */
  528. public function getPayments()
  529. {
  530. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPayments', []);
  531. return parent::getPayments();
  532. }
  533. /**
  534. * {@inheritDoc}
  535. */
  536. public function isEnrolled(): ?bool
  537. {
  538. $this->__initializer__ && $this->__initializer__->__invoke($this, 'isEnrolled', []);
  539. return parent::isEnrolled();
  540. }
  541. /**
  542. * {@inheritDoc}
  543. */
  544. public function getEntryClass(): ?\App\Entity\ClassRoom
  545. {
  546. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getEntryClass', []);
  547. return parent::getEntryClass();
  548. }
  549. /**
  550. * {@inheritDoc}
  551. */
  552. public function setEntryClass(?\App\Entity\ClassRoom $entryClass): static
  553. {
  554. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setEntryClass', [$entryClass]);
  555. return parent::setEntryClass($entryClass);
  556. }
  557. /**
  558. * {@inheritDoc}
  559. */
  560. public function getCreatedAt(): ?\DateTimeInterface
  561. {
  562. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedAt', []);
  563. return parent::getCreatedAt();
  564. }
  565. /**
  566. * {@inheritDoc}
  567. */
  568. public function setCreatedAt(\DateTimeInterface $createdAt): \App\Entity\Student
  569. {
  570. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreatedAt', [$createdAt]);
  571. return parent::setCreatedAt($createdAt);
  572. }
  573. /**
  574. * {@inheritDoc}
  575. */
  576. public function getUpdatedAt(): ?\DateTimeInterface
  577. {
  578. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdatedAt', []);
  579. return parent::getUpdatedAt();
  580. }
  581. /**
  582. * {@inheritDoc}
  583. */
  584. public function setUpdatedAt(\DateTimeInterface $updatedAt): \App\Entity\Student
  585. {
  586. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdatedAt', [$updatedAt]);
  587. return parent::setUpdatedAt($updatedAt);
  588. }
  589. /**
  590. * {@inheritDoc}
  591. */
  592. public function updateTimestamp()
  593. {
  594. $this->__initializer__ && $this->__initializer__->__invoke($this, 'updateTimestamp', []);
  595. return parent::updateTimestamp();
  596. }
  597. /**
  598. * {@inheritDoc}
  599. */
  600. public function getImageName(): ?string
  601. {
  602. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getImageName', []);
  603. return parent::getImageName();
  604. }
  605. /**
  606. * {@inheritDoc}
  607. */
  608. public function setImageName(?string $imageName): \App\Entity\Student
  609. {
  610. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setImageName', [$imageName]);
  611. return parent::setImageName($imageName);
  612. }
  613. /**
  614. * {@inheritDoc}
  615. */
  616. public function setImageFile(?\Symfony\Component\HttpFoundation\File\File $imageFile = NULL): void
  617. {
  618. $this->__initializer__ && $this->__initializer__->__invoke($this, 'setImageFile', [$imageFile]);
  619. parent::setImageFile($imageFile);
  620. }
  621. /**
  622. * {@inheritDoc}
  623. */
  624. public function getImageFile(): ?\Symfony\Component\HttpFoundation\File\File
  625. {
  626. $this->__initializer__ && $this->__initializer__->__invoke($this, 'getImageFile', []);
  627. return parent::getImageFile();
  628. }
  629. }