Completed
Push — master ( ca609a...26b9e6 )
by Iman
01:43
created
src/Commands/CheckRoutes.php 2 patches
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -67,6 +67,9 @@  discard block
 block discarded – undo
67 67
         }
68 68
     }
69 69
 
70
+    /**
71
+     * @param ErrorPrinter $errorPrinter
72
+     */
70 73
     protected function checkClassesForRouteCalls($errorPrinter)
71 74
     {
72 75
         $psr4 = ComposerJson::readKey('autoload.psr-4');
@@ -85,6 +88,10 @@  discard block
 block discarded – undo
85 88
         }
86 89
     }
87 90
 
91
+    /**
92
+     * @param ErrorPrinter $errorPrinter
93
+     * @param \Symfony\Component\Console\Helper\ProgressBar $bar
94
+     */
88 95
     private function checkRouteDefinitions($errorPrinter, $routes, $bar)
89 96
     {
90 97
         foreach ($routes as $route) {
Please login to merge, or discard this patch.
Unused Use Statements   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -3,18 +3,18 @@
 block discarded – undo
3 3
 namespace Imanghafoori\LaravelMicroscope\Commands;
4 4
 
5 5
 use Exception;
6
-use Illuminate\Support\Str;
7
-use Illuminate\Routing\Router;
8 6
 use Illuminate\Console\Command;
9 7
 use Illuminate\Routing\Controller;
10
-use Imanghafoori\LaravelMicroscope\CheckBladeFiles;
11
-use Imanghafoori\LaravelMicroscope\Traits\LogsErrors;
12
-use Imanghafoori\LaravelMicroscope\Analyzers\FilePath;
8
+use Illuminate\Routing\Router;
9
+use Illuminate\Support\Str;
10
+use Imanghafoori\LaravelMicroscope\Analyzers\ClassMethods;
13 11
 use Imanghafoori\LaravelMicroscope\Analyzers\ComposerJson;
12
+use Imanghafoori\LaravelMicroscope\Analyzers\FilePath;
13
+use Imanghafoori\LaravelMicroscope\Analyzers\NamespaceCorrector;
14
+use Imanghafoori\LaravelMicroscope\CheckBladeFiles;
14 15
 use Imanghafoori\LaravelMicroscope\Checks\CheckRouteCalls;
15
-use Imanghafoori\LaravelMicroscope\Analyzers\ClassMethods;
16 16
 use Imanghafoori\LaravelMicroscope\ErrorReporters\ErrorPrinter;
17
-use Imanghafoori\LaravelMicroscope\Analyzers\NamespaceCorrector;
17
+use Imanghafoori\LaravelMicroscope\Traits\LogsErrors;
18 18
 
19 19
 class CheckRoutes extends Command
20 20
 {
Please login to merge, or discard this patch.