* @license MIT */ class AdapterProperty extends PropertyGenerator { /** * Constructor */ public function __construct() { parent::__construct(UniqueIdentifierGenerator::getIdentifier('adapter')); $this->setVisibility(self::VISIBILITY_PRIVATE); $this->setDocblock('@var \\ProxyManager\\Factory\\RemoteObject\\AdapterInterface Remote web service adapter'); } }