Completed
Pull Request — 1.x (#246)
by Akihito
02:02
created
src/Compiler.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -65,11 +65,17 @@
 block discarded – undo
65 65
         }
66 66
     }
67 67
 
68
+    /**
69
+     * @param string $method
70
+     */
68 71
     private function isMagicMethod($method)
69 72
     {
70 73
         return in_array($method, ['__sleep', '__wakeup', 'offsetGet', 'offsetSet', 'offsetExists', 'offsetUnset', 'count', 'ksort', 'asort', 'jsonSerialize'], true);
71 74
     }
72 75
 
76
+    /**
77
+     * @param string $method
78
+     */
73 79
     private function saveNamedParam(NamedParameterInterface $namedParameter, $instance, $method)
74 80
     {
75 81
         // named parameter
Please login to merge, or discard this patch.