* @license MIT */ class GetWrappedValueHolderValue extends MethodGenerator { /** * Constructor */ public function __construct(PropertyGenerator $valueHolderProperty) { parent::__construct('getWrappedValueHolderValue'); $this->setDocblock('{@inheritDoc}'); $this->setBody('return $this->' . $valueHolderProperty->getName() . ';'); } }