diff options
| author | 2021-05-08 10:27:18 +0200 | |
|---|---|---|
| committer | 2021-05-08 10:27:18 +0200 | |
| commit | 607f7e725487ce0eb0339b288ce9e58036dad4a0 (patch) | |
| tree | 5143afbcdcf15e22b70a93e1f4744cc85eea8517 /lib/Minz/Configuration.php | |
| parent | 224b20edd16a6abd4879fe0e9e0f4c1608c9accf (diff) | |
Fix several comments syntaxes (#3615)
Mainly wrong `@return` types in comments
Diffstat (limited to 'lib/Minz/Configuration.php')
| -rw-r--r-- | lib/Minz/Configuration.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Minz/Configuration.php b/lib/Minz/Configuration.php index 8c9c59802..0e74d4351 100644 --- a/lib/Minz/Configuration.php +++ b/lib/Minz/Configuration.php @@ -43,7 +43,7 @@ class Minz_Configuration { * Return the configuration related to a given namespace. * * @param $namespace the name of the configuration to get. - * @return a Minz_Configuration object + * @return Minz_Configuration object * @throws Minz_ConfigurationNamespaceException if the namespace does not exist. */ public static function get($namespace) { @@ -152,7 +152,7 @@ class Minz_Configuration { * * @param $key the name of the param. * @param $default default value to return if key does not exist. - * @return the value corresponding to the key. + * @return mixed value corresponding to the key. * @throws Minz_ConfigurationParamException if the param does not exist */ public function param($key, $default = null) { |
