Completed
Push — master ( bc2a16...c32c04 )
by Haralan
05:18
created
classes/Kohana/Service.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,6 +65,9 @@  discard block
 block discarded – undo
65 65
 		return Service::$services[$service_name];
66 66
 	}
67 67
 
68
+	/**
69
+	 * @param string $class_name
70
+	 */
68 71
 	public static function capitalize_class_name($class_name)
69 72
 	{
70 73
 		return str_replace(' ', '_', ucwords(str_replace('_', ' ', $class_name)));
@@ -125,7 +128,7 @@  discard block
 block discarded – undo
125 128
 	 * If you pass an array, merges it with the current configuraton
126 129
 	 * If you pass a string returns the config with the specified key
127 130
 	 *
128
-	 * @param  [type] $config [description]
131
+	 * @param  string $config [description]
129 132
 	 * @return [type]
130 133
 	 */
131 134
 	public function config($config = NULL)
Please login to merge, or discard this patch.