* @license MIT */ class ValueHolderProperty extends PropertyGenerator { /** * Constructor */ public function __construct() { parent::__construct(UniqueIdentifierGenerator::getIdentifier('valueHolder')); $this->setVisibility(self::VISIBILITY_PRIVATE); $this->setDocblock('@var \\Closure|null initializer responsible for generating the wrapped object'); } }