Completed
Branch master (d47cfe)
by Mike
04:45
created
src/EntityFormMapper/FormMapper.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,6 +90,9 @@  discard block
 block discarded – undo
90 90
         }
91 91
     }
92 92
 
93
+    /**
94
+     * @param string $method
95
+     */
93 96
     private function getClassImplementingMethod($class, $method)
94 97
     {
95 98
         $reflectionClass = new ClassReflection($class);
@@ -141,7 +144,7 @@  discard block
 block discarded – undo
141 144
      * the constructor if it can be set to null.
142 145
      * 
143 146
      * @param $classWithConstructor
144
-     * @param $function
147
+     * @param string $function
145 148
      * @param $parameter
146 149
      * @return bool
147 150
      */
@@ -173,6 +176,9 @@  discard block
 block discarded – undo
173 176
         return $parameters[$param->getName()]->getType();
174 177
     }
175 178
 
179
+    /**
180
+     * @param string $setterName
181
+     */
176 182
     private function getAcceptNullForSetter($class, $setterName)
177 183
     {
178 184
         $reflectionClass = new ClassReflection($class);
Please login to merge, or discard this patch.