Completed
Pull Request — master (#592)
by
unknown
11:17
created
src/DoctrineModule/Controller/Plugin/Params.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -114,11 +114,17 @@
 block discarded – undo
114 114
         return $this->paramValueToObject($className, $value, $default);
115 115
     }
116 116
 
117
+    /**
118
+     * @param string|null $className
119
+     */
117 120
     protected function classNameToParamName($className)
118 121
     {
119 122
         return strtolower(substr($className, strrpos($className, '\\') + 1));
120 123
     }
121 124
 
125
+    /**
126
+     * @param string|null $className
127
+     */
122 128
     protected function paramValueToObject($className, $value, $default)
123 129
     {
124 130
         if ($value === null) {
Please login to merge, or discard this patch.