Exemplo n.º 1
0
 public function upload($archive)
 {
     $this->output->write('- <comment>Uploading to CloudApp...</comment>');
     $cloudapp = new CloudApp($this->user, $this->password);
     $cloudapp->addFile($archive);
     $this->output->writeln('<info>OK</info>');
 }
Exemplo n.º 2
0
 /**
  * {@inheritdoc}
  */
 public function upload($archive)
 {
     $cloudapp = new CloudApp($this->user, $this->password);
     $cloudapp->addFile($archive);
 }