Completed
Push — master ( 470eb9...f1ee74 )
by Iman
01:22
created
src/Checks/RoutelessActions.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@  discard block
 block discarded – undo
40 40
         return $namespace.'\\'.$className;
41 41
     }
42 42
 
43
+    /**
44
+     * @param string $fullNamespace
45
+     */
43 46
     protected function isLaravelController($fullNamespace)
44 47
     {
45 48
         try {
@@ -58,6 +61,9 @@  discard block
 block discarded – undo
58 61
         return $fullNamespace;
59 62
     }
60 63
 
64
+    /**
65
+     * @param string $fullNamespace
66
+     */
61 67
     protected function findOrphanActions($tokens, $fullNamespace)
62 68
     {
63 69
         $class = ClassMethods::read($tokens);
Please login to merge, or discard this patch.
src/Commands/CheckRoutes.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -3,14 +3,14 @@
 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
-use Imanghafoori\LaravelMicroscope\Psr4Classes;
7
+use Illuminate\Routing\Router;
8
+use Illuminate\Support\Str;
10 9
 use Imanghafoori\LaravelMicroscope\BladeFiles;
11
-use Imanghafoori\LaravelMicroscope\Traits\LogsErrors;
12 10
 use Imanghafoori\LaravelMicroscope\Checks\CheckRouteCalls;
13 11
 use Imanghafoori\LaravelMicroscope\ErrorReporters\ErrorPrinter;
12
+use Imanghafoori\LaravelMicroscope\Psr4Classes;
13
+use Imanghafoori\LaravelMicroscope\Traits\LogsErrors;
14 14
 
15 15
 class CheckRoutes extends Command
16 16
 {
Please login to merge, or discard this patch.