Completed
Push — master ( 27c6e4...752e65 )
by Iman
01:32
created
src/Checks/ActionsComments.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -28,6 +28,9 @@
 block discarded – undo
28 28
         }
29 29
     }
30 30
 
31
+    /**
32
+     * @param string $fullNamespace
33
+     */
31 34
     protected function checkActions($tokens, $fullNamespace, $path)
32 35
     {
33 36
         $class = ClassMethods::read($tokens);
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
@@ -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 checkActions($tokens, $fullNamespace)
62 68
     {
63 69
         $class = ClassMethods::read($tokens);
Please login to merge, or discard this patch.