Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
ValueHolderProperty.php
01 <?php
02
03 declare(strict_types=1);
04
05 namespace ProxyManager\ProxyGenerator\LazyLoadingValueHolder\PropertyGenerator;
06
07 use ProxyManager\Generator\Util\IdentifierSuffixer;
08 use Zend\Code\Generator\PropertyGenerator;
09
10 /**
11 * Property that contains the wrapped value of a lazy loading proxy
12 *
13 * @author Marco Pivetta <ocramius@gmail.com>
14 * @license MIT
15 */
16 class ValueHolderProperty extends PropertyGenerator
17 {
18 /**
19 * Constructor
20 *
21 * @throws \Zend\Code\Generator\Exception\InvalidArgumentException
22 */
23 public function __construct()
24 {
25 parent::__construct(IdentifierSuffixer::getIdentifier('valueHolder'));
26
27 $this->setVisibility(self::VISIBILITY_PRIVATE);
28 $this->setDocBlock('@var \\Closure|null initializer responsible for generating the wrapped object');
29 }
30 }
31