Completed
Push — master ( 1ecf33...bdf91e )
by Iman
01:55
created
src/Commands/CheckRoutes.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -66,6 +66,9 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,6 +4,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.