Results 6 comments of AllenJB

One solution here appears to be to use the $onRejected parameter of ->then(): ```php $bunny->connect()->then(function (Client $client) { print "Connecting\n"; return $client->channel(); }, function($reason) { // The documentation doesn't appear...

I'm also experiencing this issue. I'm using PHPStorm 2017.2 EAP (Build #172.3095.16) on Windows 10

Appears to be another case of the same issue: https://externals.io/message/108175#108176

The documentation indicates that combinations are possible, using ',' as a separator (without specifying limitations), but when you choose certain (or rather, other than a certain list) of combinations, you...