We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a27c1cb commit b62b440Copy full SHA for b62b440
src/Multiple/ConnectionManagerConcurrent.php
@@ -10,6 +10,10 @@ class ConnectionManagerConcurrent extends ConnectionManagerConsecutive
10
{
11
public function create($host, $port)
12
13
+ if (!$this->managers) {
14
+ return Promise\reject(new \UnderflowException('No managers to try to connect through'));
15
+ }
16
+
17
$all = array();
18
foreach ($this->managers as $connector) {
19
/* @var $connection Connector */
0 commit comments