Пример #1
0
 /**
  * @inheritDoc
  */
 public function __construct(IO\IOInterface $io, Config $config = null, array $options = array(), $disableTls = false)
 {
     $this->io = $io;
     $this->config = $config;
     $this->options = $options;
     $this->disableTls = $disableTls;
     parent::__construct($io, $config, $options, $disableTls);
 }
 /**
  * {@inheritdoc}
  */
 public function __construct(CurlClient $curlClient, IOInterface $io, Config $config = null, array $options = array())
 {
     parent::__construct($io, $config, $options);
     $this->curlClient = $curlClient;
     $this->io = $io;
 }
 /**
  * Constructor
  *
  * @access public
  * @param string $acfFileUrl The url that should be used instead of fileurl
  * @param IOInterface $io The IO instance
  * @param Config $config The config
  * @param array $options The options
  * @param bool $disableTls
  */
 public function __construct($wpmFileUrl, IOInterface $io, Config $config = null, array $options = [], $disableTls = false)
 {
     $this->wpmFileUrl = $wpmFileUrl;
     parent::__construct($io, $config, $options, $disableTls);
 }
Пример #4
0
 /**
  * {@inheritDoc}
  */
 public function __construct(IOInterface $io, Config $config = null, array $options = array(), AwsClient $awsClient)
 {
     parent::__construct($io, $config, $options);
     $this->awsClient = $awsClient;
 }