Clarify that MultiCurl::start() is blocking

This commit is contained in:
Zach Borboa
2015-12-30 13:41:36 -08:00
parent 86fa517c6d
commit b7cc8feb6c
+1 -1
View File
@@ -164,7 +164,7 @@ $multi_curl->addGet('https://www.bing.com/search', array(
'q' => 'hello world',
));
$multi_curl->start();
$multi_curl->start(); // Blocks until all items in the queue have been processed.
```
### Available Methods