@@ -5,17 +5,17 @@ |
||
5 | 5 | use Illuminate\Console\Command; |
6 | 6 | use Illuminate\Support\Composer; |
7 | 7 | use Illuminate\Support\Facades\View; |
8 | -use Symfony\Component\Finder\Finder; |
|
8 | +use Imanghafoori\LaravelMicroscope\Analyzers\ComposerJson; |
|
9 | +use Imanghafoori\LaravelMicroscope\Analyzers\FilePath; |
|
9 | 10 | use Imanghafoori\LaravelMicroscope\CheckNamespaces; |
11 | +use Imanghafoori\LaravelMicroscope\Contracts\FileCheckContract; |
|
12 | +use Imanghafoori\LaravelMicroscope\ErrorReporters\ErrorPrinter; |
|
10 | 13 | use Imanghafoori\LaravelMicroscope\FileReaders\Paths; |
14 | +use Imanghafoori\LaravelMicroscope\LaravelPaths\LaravelPaths; |
|
15 | +use Imanghafoori\LaravelMicroscope\SpyClasses\RoutePaths; |
|
11 | 16 | use Imanghafoori\LaravelMicroscope\Traits\LogsErrors; |
12 | 17 | use Imanghafoori\LaravelMicroscope\Traits\ScansFiles; |
13 | -use Imanghafoori\LaravelMicroscope\Analyzers\FilePath; |
|
14 | -use Imanghafoori\LaravelMicroscope\SpyClasses\RoutePaths; |
|
15 | -use Imanghafoori\LaravelMicroscope\Analyzers\ComposerJson; |
|
16 | -use Imanghafoori\LaravelMicroscope\LaravelPaths\LaravelPaths; |
|
17 | -use Imanghafoori\LaravelMicroscope\Contracts\FileCheckContract; |
|
18 | -use Imanghafoori\LaravelMicroscope\ErrorReporters\ErrorPrinter; |
|
18 | +use Symfony\Component\Finder\Finder; |
|
19 | 19 | |
20 | 20 | class CheckPsr4 extends Command implements FileCheckContract |
21 | 21 | { |