@@ -4,8 +4,8 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Closure; |
| 6 | 6 | use Illuminate\Http\Request; |
| 7 | -use Symfony\Component\HttpFoundation\Response; |
|
| 8 | 7 | use Spatie\PersonalDataExport\Events\PersonalDataExportDownloaded; |
| 8 | +use Symfony\Component\HttpFoundation\Response; |
|
| 9 | 9 | |
| 10 | 10 | class FiresPersonalDataExportDownloadedEvent |
| 11 | 11 | { |
@@ -2,17 +2,17 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Spatie\PersonalDataExport\Jobs; |
| 4 | 4 | |
| 5 | -use Spatie\PersonalDataExport\Zip; |
|
| 5 | +use Illuminate\Contracts\Filesystem\Filesystem; |
|
| 6 | +use Illuminate\Contracts\Queue\ShouldQueue; |
|
| 6 | 7 | use Illuminate\Support\Facades\Mail; |
| 7 | 8 | use Illuminate\Support\Facades\Storage; |
| 8 | -use Illuminate\Contracts\Queue\ShouldQueue; |
|
| 9 | -use Illuminate\Contracts\Filesystem\Filesystem; |
|
| 10 | -use Spatie\TemporaryDirectory\TemporaryDirectory; |
|
| 9 | +use Spatie\PersonalDataExport\Events\PersonalDataExportCreated; |
|
| 10 | +use Spatie\PersonalDataExport\Events\PersonalDataSelected; |
|
| 11 | +use Spatie\PersonalDataExport\Exceptions\InvalidUser; |
|
| 11 | 12 | use Spatie\PersonalDataExport\ExportsPersonalData; |
| 12 | 13 | use Spatie\PersonalDataExport\PersonalDataSelection; |
| 13 | -use Spatie\PersonalDataExport\Exceptions\InvalidUser; |
|
| 14 | -use Spatie\PersonalDataExport\Events\PersonalDataSelected; |
|
| 15 | -use Spatie\PersonalDataExport\Events\PersonalDataExportCreated; |
|
| 14 | +use Spatie\PersonalDataExport\Zip; |
|
| 15 | +use Spatie\TemporaryDirectory\TemporaryDirectory; |
|
| 16 | 16 | |
| 17 | 17 | class CreatePersonalDataExportJob implements ShouldQueue |
| 18 | 18 | { |
@@ -4,8 +4,8 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Illuminate\Filesystem\Filesystem; |
| 6 | 6 | use Illuminate\Support\Facades\Storage; |
| 7 | -use Spatie\TemporaryDirectory\TemporaryDirectory; |
|
| 8 | 7 | use Spatie\PersonalDataExport\Exceptions\CouldNotAddToPersonalDataSelection; |
| 8 | +use Spatie\TemporaryDirectory\TemporaryDirectory; |
|
| 9 | 9 | |
| 10 | 10 | class PersonalDataSelection |
| 11 | 11 | { |
@@ -2,9 +2,9 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Spatie\PersonalDataExport; |
| 4 | 4 | |
| 5 | -use ZipArchive; |
|
| 6 | 5 | use Illuminate\Support\Str; |
| 7 | 6 | use Spatie\TemporaryDirectory\TemporaryDirectory; |
| 7 | +use ZipArchive; |
|
| 8 | 8 | |
| 9 | 9 | class Zip |
| 10 | 10 | { |