Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/acceptance/features/bootstrap/FeatureContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -448,10 +448,10 @@ public function getLdapHostWithoutScheme():string {
}

/**
* @return integer
* @return string
*/
public function getLdapPort():int {
return $this->ldapPort;
public function getLdapPortAsString(): string {
return (string)$this->ldapPort;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/features/bootstrap/Provisioning.php
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ public function setLdapSetting(string $configId, string $configKey, string $conf
"code" => "%ldap_port%",
"function" => [
$this,
"getLdapPort"
"getLdapPortAsString"
],
"parameter" => []
]
Expand Down
Loading