Return immediately when already multicurl has already started

This commit is contained in:
Zach Borboa
2016-08-15 00:39:26 -07:00
parent e31718fbfe
commit 58a6568cab
+4
View File
@@ -516,6 +516,10 @@ class MultiCurl
*/
public function start()
{
if ($this->isStarted) {
return;
}
foreach ($this->curls as $ch) {
$this->initHandle($ch);
}