Fix parameter names in Configuration (#17305)

This commit is contained in:
Viktor Szépe 2023-12-05 08:26:52 +01:00 committed by GitHub
parent d9b795171a
commit 0ee662b515
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -200,7 +200,7 @@ class Configuration
/** /**
* Sets boolean format for query string. * Sets boolean format for query string.
* *
* @param string $booleanFormatForQueryString Boolean format for query string * @param string $booleanFormat Boolean format for query string
* *
* @return $this * @return $this
*/ */
@ -503,7 +503,7 @@ class Configuration
* @param array|null $variables hash of variable and the corresponding value (optional) * @param array|null $variables hash of variable and the corresponding value (optional)
* @return string URL based on host settings * @return string URL based on host settings
*/ */
public static function getHostString(array $hostsSettings, $hostIndex, array $variables = null) public static function getHostString(array $hostSettings, $hostIndex, array $variables = null)
{ {
if (null === $variables) { if (null === $variables) {
$variables = []; $variables = [];