@@ -2,12 +2,12 @@ |
||
2 | 2 | |
3 | 3 | namespace Spatie\Export; |
4 | 4 | |
5 | -use Spatie\Crawler\Crawler; |
|
6 | -use RecursiveIteratorIterator; |
|
5 | +use Illuminate\Contracts\Filesystem\Filesystem; |
|
7 | 6 | use RecursiveDirectoryIterator; |
7 | +use RecursiveIteratorIterator; |
|
8 | 8 | use Spatie\Crawler\CrawlInternalUrls; |
9 | +use Spatie\Crawler\Crawler; |
|
9 | 10 | use Spatie\Export\Concerns\Messenger; |
10 | -use Illuminate\Contracts\Filesystem\Filesystem; |
|
11 | 11 | |
12 | 12 | class Exporter |
13 | 13 | { |
@@ -2,15 +2,15 @@ |
||
2 | 2 | |
3 | 3 | namespace Spatie\Export\Console; |
4 | 4 | |
5 | +use Illuminate\Console\Command; |
|
6 | +use Illuminate\Support\Collection; |
|
5 | 7 | use Illuminate\Support\Facades\Storage; |
6 | 8 | use Spatie\Crawler\Crawler; |
7 | 9 | use Spatie\Export\Exporter; |
8 | -use Illuminate\Console\Command; |
|
9 | -use Illuminate\Support\Collection; |
|
10 | 10 | use Spatie\Export\InternalClient; |
11 | 11 | use Spatie\Sitemap\SitemapGenerator; |
12 | -use Symfony\Component\Process\Process; |
|
13 | 12 | use Symfony\Component\Console\Input\InputOption; |
13 | +use Symfony\Component\Process\Process; |
|
14 | 14 | |
15 | 15 | class ExportCommand extends Command |
16 | 16 | { |