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>'); }
/** * {@inheritdoc} */ public function upload($archive) { $cloudapp = new CloudApp($this->user, $this->password); $cloudapp->addFile($archive); }