Use consistent first uppercase char in MD_STD reference to exception

This commit is contained in:
Joshua Ramon Enslin 2021-04-09 13:45:19 +02:00
parent 2c1f6a0490
commit 36bdb36986
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -301,7 +301,7 @@ final class MD_STD {
public static function runCurlMulti(array $urls, int $timeout = 1200):array {
if (!($mh = curl_multi_init())) {
throw new exception("Failed to set up multi handle");
throw new Exception("Failed to set up multi handle");
}
$curl_array = [];