fix: drop curl_close() call (deprecated PHP 8.5, no-op since 8.0)

This commit is contained in:
Pontoporeia
2026-04-06 16:11:34 +02:00
parent 9a9dfd2b9e
commit e73fcfd0c8

View File

@@ -446,7 +446,6 @@ class SystemController
curl_exec($ch);
$ms = (int) round((microtime(true) - $start) * 1000);
$code = (int) curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
return $code > 0 ? [$code, $ms] : null;
}
}