Completed
Push — master ( 1bd511...08a4e8 )
by Iman
01:23
created
src/CheckClasses.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@
 block discarded – undo
26 26
         }
27 27
     }
28 28
 
29
+    /**
30
+     * @param string $msg
31
+     */
29 32
     public static function warnDumping($msg)
30 33
     {
31 34
         $p = resolve(ErrorPrinter::class)->printer;
Please login to merge, or discard this patch.
src/Checks/RoutelessActions.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -42,6 +42,9 @@  discard block
 block discarded – undo
42 42
         return $namespace.'\\'.$className;
43 43
     }
44 44
 
45
+    /**
46
+     * @param string $fullNamespace
47
+     */
45 48
     private function isLaravelController($fullNamespace)
46 49
     {
47 50
         try {
@@ -60,6 +63,9 @@  discard block
 block discarded – undo
60 63
         return $fullNamespace;
61 64
     }
62 65
 
66
+    /**
67
+     * @param string $fullNamespace
68
+     */
63 69
     private function checkActions($tokens, $fullNamespace)
64 70
     {
65 71
         $class = ClassMethods::read($tokens);
Please login to merge, or discard this patch.