Update comment to match new behavior

This commit is contained in:
Zach Borboa
2018-03-06 22:17:38 -08:00
parent caf1ec2062
commit 83cd9d14ee
+1 -1
View File
@@ -695,7 +695,7 @@ class MultiCurl
// Remove completed instance from active curls.
unset($this->activeCurls[$key]);
// Start a new request before removing the handle of the completed one.
// Start new requests before removing the handle of the completed one.
while (count($this->curls) >= 1 && count($this->activeCurls) < $this->concurrency) {
$this->initHandle(array_shift($this->curls));
}