Remove all code related to the CSV importer in preparation of #262

Signed-off-by: James Cole <thegrumpydictator@gmail.com>
This commit is contained in:
James Cole
2016-05-22 20:18:16 +02:00
parent f8eb1fa44a
commit 288e713f94
64 changed files with 14 additions and 4677 deletions

View File

@@ -33,6 +33,7 @@ class UploadCollector extends BasicCollector implements CollectorInterface
private $uploadDisk;
/**
*
* AttachmentCollector constructor.
*
* @param ExportJob $job
@@ -44,6 +45,8 @@ class UploadCollector extends BasicCollector implements CollectorInterface
// make storage:
$this->uploadDisk = Storage::disk('upload');
$this->exportDisk = Storage::disk('export');
// todo needs work for new importer (potentially collect other types as well)
$this->expected = 'csv-upload-' . Auth::user()->id . '-';
}