Completed
Push — master ( 748fb8...43070c )
by Iman
01:32
created
src/ErrorReporters/ConsolePrinterInstaller.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,9 +6,9 @@
 block discarded – undo
6 6
 use Illuminate\Support\Str;
7 7
 use Imanghafoori\LaravelMicroscope\ErrorTypes\BladeFile;
8 8
 use Imanghafoori\LaravelMicroscope\ErrorTypes\CompactCall;
9
-use Imanghafoori\LaravelMicroscope\ErrorTypes\ddFound;
10 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.
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -45,6 +45,9 @@  discard block
 block discarded – undo
45 45
         $errorPrinter->printTime();
46 46
     }
47 47
 
48
+    /**
49
+     * @param string $commandType
50
+     */
48 51
     protected static function getKey($commandType)
49 52
     {
50 53
         return "__microscope__$commandType-count";
@@ -115,6 +118,10 @@  discard block
 block discarded – undo
115 118
         });
116 119
     }
117 120
 
121
+    /**
122
+     * @param string $commandType
123
+     * @param integer $errorCount
124
+     */
118 125
     protected static function printErrorCount($lastTimeCount, $commandType, $errorCount)
119 126
     {
120 127
         $lastTimeError = $commandType.' errors, compared to the last run.';
Please login to merge, or discard this patch.
src/GenerateCode.php 1 patch
Doc Comments   +13 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,10 +14,10 @@  discard block
 block discarded – undo
14 14
     /**
15 15
      * Get all of the listeners and their corresponding events.
16 16
      *
17
-     * @param  iterable  $paths
17
+     * @param  \Symfony\Component\Finder\Finder  $paths
18 18
      * @param  $composerPath
19 19
      * @param  $composerNamespace
20
-     * @param  $command
20
+     * @param  Commands\CheckExpansions $command
21 21
      *
22 22
      * @return void
23 23
      */
@@ -69,6 +69,9 @@  discard block
 block discarded – undo
69 69
         return $path;
70 70
     }
71 71
 
72
+    /**
73
+     * @param string $name
74
+     */
72 75
     private static function ask($command, $name)
73 76
     {
74 77
         return $command->getOutput()->confirm('Do you want to generate a service provider: '.$name, true);
@@ -83,6 +86,9 @@  discard block
 block discarded – undo
83 86
             \in_array(T_DOUBLE_ARROW, [$tokens[$i + 1][0], $tokens[$i + 2][0]]);
84 87
     }
85 88
 
89
+    /**
90
+     * @param string $providerPath
91
+     */
86 92
     private static function addToProvidersArray($providerPath)
87 93
     {
88 94
         $tokens = token_get_all(file_get_contents(config_path('app.php')));
@@ -107,6 +113,11 @@  discard block
 block discarded – undo
107 113
         return $tokens;
108 114
     }
109 115
 
116
+    /**
117
+     * @param \Symfony\Component\Finder\SplFileInfo $classFilePath
118
+     * @param string $namespace
119
+     * @param string $prefix
120
+     */
110 121
     protected static function generateFolderStructure($classFilePath, $namespace, $prefix)
111 122
     {
112 123
         $_basePath = $classFilePath->getPath().DIRECTORY_SEPARATOR;
Please login to merge, or discard this patch.
src/CheckNamespaces.php 1 patch
Doc Comments   +14 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,10 +19,10 @@  discard block
 block discarded – undo
19 19
     /**
20 20
      * Get all of the listeners and their corresponding events.
21 21
      *
22
-     * @param  iterable  $paths
22
+     * @param  \Symfony\Component\Finder\Finder  $paths
23 23
      * @param  $composerPath
24 24
      * @param  $composerNamespace
25
-     * @param  $command
25
+     * @param  Commands\CheckPsr4 $command
26 26
      *
27 27
      * @return void
28 28
      */
@@ -79,6 +79,9 @@  discard block
 block discarded – undo
79 79
         }
80 80
     }
81 81
 
82
+    /**
83
+     * @param string $relativePath
84
+     */
82 85
     private static function warn($currentNamespace, $relativePath, $class)
83 86
     {
84 87
         /**
@@ -107,6 +110,9 @@  discard block
 block discarded – undo
107 110
         return Str::startsWith($buffer, '<?php');
108 111
     }
109 112
 
113
+    /**
114
+     * @param string $correctNamespace
115
+     */
110 116
     protected static function doNamespaceCorrection($absFilePath, $currentNamespace, $correctNamespace)
111 117
     {
112 118
         event('laravel_microscope.namespace_fixing', get_defined_vars());
@@ -114,6 +120,9 @@  discard block
 block discarded – undo
114 120
         event('laravel_microscope.namespace_fixed', get_defined_vars());
115 121
     }
116 122
 
123
+    /**
124
+     * @param string $correctNamespace
125
+     */
117 126
     private static function ask($command, $correctNamespace)
118 127
     {
119 128
         if ($command->option('force')) {
@@ -123,6 +132,9 @@  discard block
 block discarded – undo
123 132
         return $command->getOutput()->confirm('Do you want to change it to: '.$correctNamespace, true);
124 133
     }
125 134
 
135
+    /**
136
+     * @param string $correctNamespace
137
+     */
126 138
     private static function changedNamespaces($class, $currentNamespace, $correctNamespace)
127 139
     {
128 140
         $_currentClass = $currentNamespace.'\\'.$class;
Please login to merge, or discard this patch.
src/Commands/CheckPsr4.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -178,6 +178,10 @@
 block discarded – undo
178 178
         app(ErrorPrinter::class)->simplePendError($_path, $line, '', 'ns_replacement', 'Namespace replacement:');
179 179
     }
180 180
 
181
+    /**
182
+     * @param ErrorPrinter $errorPrinter
183
+     * @param double $time
184
+     */
181 185
     private function printErrorsCount($errorPrinter, $time)
182 186
     {
183 187
         if ($errorCount = $errorPrinter->errorsList['total']) {
Please login to merge, or discard this patch.
src/Commands/CheckEndIf.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -63,6 +63,9 @@
 block discarded – undo
63 63
         $this->warn(PHP_EOL.$tries.' fixes applied to: '.class_basename($filePath));
64 64
     }
65 65
 
66
+    /**
67
+     * @param integer $fixed
68
+     */
66 69
     private function printFinalMsg($fixed)
67 70
     {
68 71
         if ($fixed > 0) {
Please login to merge, or discard this patch.
src/Refactors/SyntaxNormalizer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -108,6 +108,9 @@
 block discarded – undo
108 108
         return $refactoredTokens;
109 109
     }
110 110
 
111
+    /**
112
+     * @param integer $i
113
+     */
111 114
     private static function removeSemi(&$tokens, $i)
112 115
     {
113 116
         [$next, $u] = FunctionCall::getNextToken($tokens, $i);
Please login to merge, or discard this patch.
src/Commands/CheckEarlyReturns.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -84,6 +84,10 @@
 block discarded – undo
84 84
         return [$fixes, $tokens];
85 85
     }
86 86
 
87
+    /**
88
+     * @param integer $fixed
89
+     * @param integer $fixingFilesCount
90
+     */
87 91
     private function printFinalMsg($fixed, $fixingFilesCount)
88 92
     {
89 93
         if ($fixed > 0) {
Please login to merge, or discard this patch.