GitS3\Console\Commands\DeployCommand::uploadFile PHP Method

uploadFile() private method

private uploadFile ( Symfony\Component\Finder\SplFileInfo $file )
$file Symfony\Component\Finder\SplFileInfo
    private function uploadFile(File $file)
    {
        if ($file->getFilename() == 'config.yml') {
            return;
        }
        $this->output->writeln('Uploading ' . $file->getRelativePathname());
        $this->bucket->upload($file);
    }