* @license MIT */ class AdapterProperty extends PropertyGenerator { /** * Constructor * * @throws \Zend\Code\Generator\Exception\InvalidArgumentException */ public function __construct() { parent::__construct(IdentifierSuffixer::getIdentifier('adapter')); $this->setVisibility(self::VISIBILITY_PRIVATE); $this->setDocBlock('@var \\' . AdapterInterface::class . ' Remote web service adapter'); } }