Completed
Push — master ( 45352e...470eb9 )
by Iman
01:26
created
src/LaravelMicroscopeServiceProvider.php 1 patch
Unused Use Statements   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2,21 +2,21 @@
 block discarded – undo
2 2
 
3 3
 namespace Imanghafoori\LaravelMicroscope;
4 4
 
5
-use Illuminate\View\View;
6
-use Illuminate\Support\Str;
5
+use Illuminate\Contracts\Auth\Access\Gate as GateContract;
6
+use Illuminate\Contracts\Queue\Factory as QueueFactoryContract;
7 7
 use Illuminate\Support\Facades\Event;
8 8
 use Illuminate\Support\Facades\Route;
9 9
 use Illuminate\Support\ServiceProvider;
10
+use Illuminate\Support\Str;
11
+use Illuminate\View\View;
10 12
 use Imanghafoori\LaravelMicroscope\Commands;
13
+use Imanghafoori\LaravelMicroscope\ErrorReporters\ConsolePrinterInstaller;
14
+use Imanghafoori\LaravelMicroscope\ErrorReporters\ErrorPrinter;
15
+use Imanghafoori\LaravelMicroscope\SpyClasses\SpyBladeCompiler;
16
+use Imanghafoori\LaravelMicroscope\SpyClasses\SpyDispatcher;
11 17
 use Imanghafoori\LaravelMicroscope\SpyClasses\SpyGate;
12 18
 use Imanghafoori\LaravelMicroscope\SpyClasses\SpyRouter;
13 19
 use Imanghafoori\LaravelMicroscope\SpyClasses\ViewsData;
14
-use Illuminate\Contracts\Auth\Access\Gate as GateContract;
15
-use Imanghafoori\LaravelMicroscope\SpyClasses\SpyDispatcher;
16
-use Imanghafoori\LaravelMicroscope\SpyClasses\SpyBladeCompiler;
17
-use Illuminate\Contracts\Queue\Factory as QueueFactoryContract;
18
-use Imanghafoori\LaravelMicroscope\ErrorReporters\ErrorPrinter;
19
-use Imanghafoori\LaravelMicroscope\ErrorReporters\ConsolePrinterInstaller;
20 20
 
21 21
 class LaravelMicroscopeServiceProvider extends ServiceProvider
22 22
 {
Please login to merge, or discard this patch.
src/Commands/PrettyPrintRoutes.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace Imanghafoori\LaravelMicroscope\Commands;
4 4
 
5 5
 use Exception;
6
-use Illuminate\Support\Str;
7 6
 use Illuminate\Console\Command;
7
+use Illuminate\Support\Str;
8 8
 
9 9
 class PrettyPrintRoutes extends Command
10 10
 {
Please login to merge, or discard this patch.
Doc Comments   +19 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@  discard block
 block discarded – undo
35 35
         }
36 36
     }
37 37
 
38
+    /**
39
+     * @param \Illuminate\Routing\Route $route
40
+     */
38 41
     private function writeIt($route, $filename)
39 42
     {
40 43
         try {
@@ -57,6 +60,9 @@  discard block
 block discarded – undo
57 60
         }
58 61
     }
59 62
 
63
+    /**
64
+     * @param string $value
65
+     */
60 66
     private function deduceRoute($value)
61 67
     {
62 68
         if (Str::containsAll($value, ['@', '\\'])) {
@@ -68,6 +74,9 @@  discard block
 block discarded – undo
68 74
         return $route;
69 75
     }
70 76
 
77
+    /**
78
+     * @param \Illuminate\Routing\Route $route
79
+     */
71 80
     private function printIt($route)
72 81
     {
73 82
         try {
@@ -80,6 +89,10 @@  discard block
 block discarded – undo
80 89
         }
81 90
     }
82 91
 
92
+    /**
93
+     * @param string $action
94
+     * @param string $middlewareSection
95
+     */
83 96
     private function getMovableRoute($route, $methods, $action, $middlewareSection)
84 97
     {
85 98
         if ($action == '\Illuminate\Routing\ViewController::class') {
@@ -117,6 +130,9 @@  discard block
 block discarded – undo
117 130
         return ($middlewares ? '->middleware(['.$middlewares."])" : '');
118 131
     }
119 132
 
133
+    /**
134
+     * @param Exception $e
135
+     */
120 136
     private function handleRouteProblem($e)
121 137
     {
122 138
         $this->info('The route has some problem.');
@@ -124,6 +140,9 @@  discard block
 block discarded – undo
124 140
         $this->info($e->getFile());
125 141
     }
126 142
 
143
+    /**
144
+     * @param string $middlewares
145
+     */
127 146
     private function prettyPrintInConsole($route, $middlewares)
128 147
     {
129 148
         $this->getOutput()->writeln('---------------------------------------------------');
Please login to merge, or discard this patch.
src/Commands/CheckCompact.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,13 +3,13 @@
 block discarded – undo
3 3
 namespace Imanghafoori\LaravelMicroscope\Commands;
4 4
 
5 5
 use Illuminate\Console\Command;
6
-use Imanghafoori\LaravelMicroscope\Analyzers\Ifs;
6
+use Imanghafoori\LaravelMicroscope\Analyzers\ComposerJson;
7 7
 use Imanghafoori\LaravelMicroscope\Analyzers\FilePath;
8
-use Imanghafoori\LaravelMicroscope\SpyClasses\RoutePaths;
9 8
 use Imanghafoori\LaravelMicroscope\Analyzers\FunctionCall;
10
-use Imanghafoori\LaravelMicroscope\Analyzers\ComposerJson;
9
+use Imanghafoori\LaravelMicroscope\Analyzers\Ifs;
11 10
 use Imanghafoori\LaravelMicroscope\ErrorReporters\ErrorPrinter;
12 11
 use Imanghafoori\LaravelMicroscope\ErrorTypes\CompactCall;
12
+use Imanghafoori\LaravelMicroscope\SpyClasses\RoutePaths;
13 13
 
14 14
 class CheckCompact extends Command
15 15
 {
Please login to merge, or discard this patch.
src/Commands/CheckEarlyReturns.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,9 +3,9 @@
 block discarded – undo
3 3
 namespace Imanghafoori\LaravelMicroscope\Commands;
4 4
 
5 5
 use Illuminate\Console\Command;
6
+use Imanghafoori\LaravelMicroscope\Analyzers\ComposerJson;
6 7
 use Imanghafoori\LaravelMicroscope\Analyzers\FilePath;
7 8
 use Imanghafoori\LaravelMicroscope\Analyzers\Refactor;
8
-use Imanghafoori\LaravelMicroscope\Analyzers\ComposerJson;
9 9
 use Imanghafoori\LaravelMicroscope\ErrorReporters\ErrorPrinter;
10 10
 
11 11
 class CheckEarlyReturns extends Command
Please login to merge, or discard this patch.
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -56,6 +56,9 @@  discard block
 block discarded – undo
56 56
         return app(ErrorPrinter::class)->hasErrors() ? 1 : 0;
57 57
     }
58 58
 
59
+    /**
60
+     * @param integer $tries
61
+     */
59 62
     private function fix($filePath, $tokens, $tries)
60 63
     {
61 64
         Refactor::saveTokens($filePath, $tokens, $this->option('test'));
@@ -73,6 +76,9 @@  discard block
 block discarded – undo
73 76
         return [$fixes, $tokens];
74 77
     }
75 78
 
79
+    /**
80
+     * @param integer $fixed
81
+     */
76 82
     private function printFinalMsg($fixed)
77 83
     {
78 84
         if ($fixed > 0) {
Please login to merge, or discard this patch.
src/Commands/CheckExpansions.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,10 @@
 block discarded – undo
3 3
 namespace Imanghafoori\LaravelMicroscope\Commands;
4 4
 
5 5
 use Illuminate\Console\Command;
6
-use Imanghafoori\LaravelMicroscope\GenerateCode;
7
-use Imanghafoori\LaravelMicroscope\Analyzers\FilePath;
8 6
 use Imanghafoori\LaravelMicroscope\Analyzers\ComposerJson;
7
+use Imanghafoori\LaravelMicroscope\Analyzers\FilePath;
9 8
 use Imanghafoori\LaravelMicroscope\ErrorReporters\ErrorPrinter;
9
+use Imanghafoori\LaravelMicroscope\GenerateCode;
10 10
 
11 11
 class CheckExpansions extends Command
12 12
 {
Please login to merge, or discard this patch.
src/Commands/CheckViews.php 1 patch
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -4,14 +4,14 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Console\Command;
6 6
 use Illuminate\Support\Facades\View;
7
-use Imanghafoori\LaravelMicroscope\BladeFiles;
8
-use Imanghafoori\LaravelMicroscope\Analyzers\FilePath;
9
-use Imanghafoori\LaravelMicroscope\ErrorTypes\BladeFile;
10
-use Imanghafoori\LaravelMicroscope\SpyClasses\RoutePaths;
11 7
 use Imanghafoori\LaravelMicroscope\Analyzers\ComposerJson;
8
+use Imanghafoori\LaravelMicroscope\Analyzers\FilePath;
12 9
 use Imanghafoori\LaravelMicroscope\Analyzers\FunctionCall;
13
-use Imanghafoori\LaravelMicroscope\ErrorReporters\ErrorPrinter;
10
+use Imanghafoori\LaravelMicroscope\BladeFiles;
14 11
 use Imanghafoori\LaravelMicroscope\Checks\CheckViewFilesExistence;
12
+use Imanghafoori\LaravelMicroscope\ErrorReporters\ErrorPrinter;
13
+use Imanghafoori\LaravelMicroscope\ErrorTypes\BladeFile;
14
+use Imanghafoori\LaravelMicroscope\SpyClasses\RoutePaths;
15 15
 
16 16
 class CheckViews extends Command
17 17
 {
Please login to merge, or discard this patch.
src/Commands/CheckPsr4.php 1 patch
Unused Use Statements   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,18 +4,18 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Console\Command;
6 6
 use Illuminate\Support\Composer;
7
-use Symfony\Component\Finder\Finder;
8 7
 use Illuminate\Support\Facades\View;
9
-use Imanghafoori\LaravelMicroscope\CheckNamespaces;
10
-use Imanghafoori\LaravelMicroscope\FileReaders\Paths;
11
-use Imanghafoori\LaravelMicroscope\Analyzers\FilePath;
12
-use Imanghafoori\LaravelMicroscope\SpyClasses\RoutePaths;
13 8
 use Imanghafoori\LaravelMicroscope\Analyzers\ComposerJson;
9
+use Imanghafoori\LaravelMicroscope\Analyzers\FilePath;
10
+use Imanghafoori\LaravelMicroscope\CheckNamespaces;
14 11
 use Imanghafoori\LaravelMicroscope\Contracts\FileCheckContract;
15 12
 use Imanghafoori\LaravelMicroscope\ErrorReporters\ErrorPrinter;
13
+use Imanghafoori\LaravelMicroscope\FileReaders\Paths;
14
+use Imanghafoori\LaravelMicroscope\LaravelPaths\MigrationPaths;
15
+use Imanghafoori\LaravelMicroscope\SpyClasses\RoutePaths;
16 16
 use Imanghafoori\LaravelMicroscope\Traits\LogsErrors;
17 17
 use Imanghafoori\LaravelMicroscope\Traits\ScansFiles;
18
-use Imanghafoori\LaravelMicroscope\LaravelPaths\MigrationPaths;
18
+use Symfony\Component\Finder\Finder;
19 19
 
20 20
 class CheckPsr4 extends Command implements FileCheckContract
21 21
 {
Please login to merge, or discard this patch.
src/CheckNamespaces.php 2 patches
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,11 +4,11 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Support\Str;
6 6
 use Imanghafoori\LaravelMicroscope\Analyzers\FilePath;
7
-use Imanghafoori\LaravelMicroscope\LaravelPaths\MigrationPaths;
8
-use Imanghafoori\LaravelMicroscope\ErrorReporters\PendingError;
9 7
 use Imanghafoori\LaravelMicroscope\Analyzers\GetClassProperties;
10 8
 use Imanghafoori\LaravelMicroscope\Analyzers\NamespaceCorrector;
11 9
 use Imanghafoori\LaravelMicroscope\ErrorReporters\ErrorPrinter;
10
+use Imanghafoori\LaravelMicroscope\ErrorReporters\PendingError;
11
+use Imanghafoori\LaravelMicroscope\LaravelPaths\MigrationPaths;
12 12
 
13 13
 class CheckNamespaces
14 14
 {
Please login to merge, or discard this patch.
Doc Comments   +11 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,10 +17,10 @@  discard block
 block discarded – undo
17 17
     /**
18 18
      * Get all of the listeners and their corresponding events.
19 19
      *
20
-     * @param  iterable  $paths
20
+     * @param  \Symfony\Component\Finder\Finder  $paths
21 21
      * @param  $composerPath
22 22
      * @param  $composerNamespace
23
-     * @param  $command
23
+     * @param  Commands\CheckPsr4 $command
24 24
      *
25 25
      * @return void
26 26
      */
@@ -83,6 +83,9 @@  discard block
 block discarded – undo
83 83
         app(ErrorPrinter::class)->errorsList['total'] = 0;
84 84
     }
85 85
 
86
+    /**
87
+     * @param string $relativePath
88
+     */
86 89
     private static function warn($currentNamespace, $relativePath)
87 90
     {
88 91
         /**
@@ -110,6 +113,9 @@  discard block
 block discarded – undo
110 113
         return Str::startsWith($buffer, '<?php');
111 114
     }
112 115
 
116
+    /**
117
+     * @param string $correctNamespace
118
+     */
113 119
     protected static function doNamespaceCorrection($absFilePath, $currentNamespace, $correctNamespace)
114 120
     {
115 121
         event('laravel_microscope.namespace_fixing', get_defined_vars());
@@ -117,6 +123,9 @@  discard block
 block discarded – undo
117 123
         event('laravel_microscope.namespace_fixed', get_defined_vars());
118 124
     }
119 125
 
126
+    /**
127
+     * @param string $correctNamespace
128
+     */
120 129
     private static function ask($command, $correctNamespace)
121 130
     {
122 131
         return $command->getOutput()->confirm('Do you want to change it to: '.$correctNamespace, true);
Please login to merge, or discard this patch.
src/ErrorReporters/ConsolePrinterInstaller.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace Imanghafoori\LaravelMicroscope\ErrorReporters;
4 4
 
5
-use Illuminate\Support\Str;
6 5
 use Illuminate\Support\Facades\Event;
7
-use Imanghafoori\LaravelMicroscope\ErrorTypes\ddFound;
8
-use Imanghafoori\LaravelMicroscope\ErrorTypes\EnvFound;
6
+use Illuminate\Support\Str;
9 7
 use Imanghafoori\LaravelMicroscope\ErrorTypes\BladeFile;
10 8
 use Imanghafoori\LaravelMicroscope\ErrorTypes\CompactCall;
9
+use Imanghafoori\LaravelMicroscope\ErrorTypes\EnvFound;
11 10
 use Imanghafoori\LaravelMicroscope\ErrorTypes\RouteDefinitionConflict;
11
+use Imanghafoori\LaravelMicroscope\ErrorTypes\ddFound;
12 12
 
13 13
 class ConsolePrinterInstaller
14 14
 {
Please login to merge, or discard this patch.