Update psalm baseline

Signed-off-by: GitHub <noreply@github.com>
Signed-off-by: szaimen <szaimen@e.mail.de>
This commit is contained in:
nextcloud-command 2022-02-28 16:25:23 +00:00 committed by szaimen
parent 82c371b519
commit 9fbcaae567
2 changed files with 149 additions and 3 deletions

View file

@ -151,7 +151,7 @@ class ConfigurationManager
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,'http://' . $domain . ':443');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$response = (string)curl_exec($ch);
# Get rid of trailing \n
$response = str_replace("\n", "", $response);