From 36bdb369863133fbfef9d18221eebd05c6db62bc Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Fri, 9 Apr 2021 13:45:19 +0200 Subject: [PATCH] Use consistent first uppercase char in MD_STD reference to exception --- src/MD_STD.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MD_STD.php b/src/MD_STD.php index 32ec335..fc3ff05 100644 --- a/src/MD_STD.php +++ b/src/MD_STD.php @@ -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 = [];