AllenJB
AllenJB
This appears to be a duplicate of #1639
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...
What version of PHP are you testing this on? The behavior you describe sounds like you're using PHP < 7.3, when the `$options` parameter and samesite support were added, and...
I've run OP's pastebin script on PHP 8.4 and it works as expected (and documented). In the Chrome Dev Tools Network tab, if I click on the request and check...
You can find information on commandline usage and options by running `php --help` (this is common to many linux programs) I've proposed adding a note about this to the page...
In this case fixing this instance would have created an inconsistency with the markup across rest of this file, so I've reviewed the whole file to make it consistent.