@@ -65,6 +65,9 @@ discard block |
||
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 |
||
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) |