Completed
Push — master ( 4d43de...d186d6 )
by Joram van den
04:11
created
lib/Ajde/Object/Magic.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -103,6 +103,9 @@  discard block
 block discarded – undo
103 103
             empty($value);
104 104
     }
105 105
 
106
+    /**
107
+     * @param string $key
108
+     */
106 109
     public function hasEmpty($key)
107 110
     {
108 111
         return $this->has($key) && $this->isEmpty($key);
@@ -193,6 +196,9 @@  discard block
 block discarded – undo
193 196
         return preg_replace_callback('/_([a-z])/', $func, $str);
194 197
     }
195 198
 
199
+    /**
200
+     * @param string $classname
201
+     */
196 202
     public static function classnameToUppercase($classname)
197 203
     {
198 204
         return str_replace(' ', '_', ucwords(str_replace('_', ' ', $classname)));
Please login to merge, or discard this patch.