diff --git a/src/configuration/ArcanistConfigurationManager.php b/src/configuration/ArcanistConfigurationManager.php --- a/src/configuration/ArcanistConfigurationManager.php +++ b/src/configuration/ArcanistConfigurationManager.php @@ -50,9 +50,9 @@ * arguments ("runtime"). * The precedence is runtime > local > project > user > system * - * @param key $key Key to read. - * @param wild $default (optional) Default value if key is not found. - * @return wild Value, or default value if not found. + * @param string $key Key to read. + * @param wild $default (optional) Default value if key is not found. + * @return wild Value, or default value if not found. * * @task config */ @@ -71,7 +71,7 @@ * The map is ordered by the canonical sources precedence, which is: * runtime > local > project > user > system * - * @param key $key Key to read + * @param string $key Key to read * @return array Mapping of source => value read. Sources with no value are * not in the array. * @@ -135,8 +135,8 @@ * Sets a runtime config value that takes precedence over any static * config values. * - * @param key $key Key to set. - * @param value $value The value of the key. + * @param string $key Key to set. + * @param wild $value The value of the key. * * @task config */ diff --git a/src/workingcopyidentity/ArcanistWorkingCopyIdentity.php b/src/workingcopyidentity/ArcanistWorkingCopyIdentity.php --- a/src/workingcopyidentity/ArcanistWorkingCopyIdentity.php +++ b/src/workingcopyidentity/ArcanistWorkingCopyIdentity.php @@ -246,9 +246,9 @@ * configuration sources. See @{method:getConfigFromAnySource} to read from * user configuration. * - * @param key $key Key to read. - * @param wild $default (Optional) Default value if key is not found. - * @return wild Value, or default value if not found. + * @param string $key Key to read. + * @param wild $default (Optional) Default value if key is not found. + * @return wild Value, or default value if not found. * * @task config */