@@ -66,6 +66,9 @@ |
||
66 | 66 | return $msg; |
67 | 67 | } |
68 | 68 | |
69 | + /** |
|
70 | + * @param ErrorPrinter $errorPrinter |
|
71 | + */ |
|
69 | 72 | private function checkRouteDefinitions($errorPrinter, $routes) |
70 | 73 | { |
71 | 74 | foreach ($routes as $route) { |
@@ -4,6 +4,7 @@ discard block |
||
4 | 4 | |
5 | 5 | use Exception; |
6 | 6 | use Illuminate\Console\Command; |
7 | +use Illuminate\Filesystem\Filesystem; |
|
7 | 8 | use Illuminate\Routing\Router; |
8 | 9 | use Illuminate\Support\Str; |
9 | 10 | use Imanghafoori\LaravelMicroscope\BladeFiles; |
@@ -11,7 +12,6 @@ discard block |
||
11 | 12 | use Imanghafoori\LaravelMicroscope\Checks\CheckRouteCalls; |
12 | 13 | use Imanghafoori\LaravelMicroscope\ErrorReporters\ErrorPrinter; |
13 | 14 | use Imanghafoori\LaravelMicroscope\Psr4Classes; |
14 | -use Illuminate\Filesystem\Filesystem; |
|
15 | 15 | use Imanghafoori\LaravelMicroscope\Traits\LogsErrors; |
16 | 16 | |
17 | 17 | class CheckRoutes extends Command |