@mbonneau
I am doing some work on a ibrary that depends on this package, and this line is now causing an issue in the latest version:
Ratchet\RFC6455\Handshake\ClientNegotiator::__construct(): Argument #1 ($perMessageDeflateOptions) must be of type ?Ratchet\RFC6455\Handshake\PermessageDeflateOptions, GuzzleHttp\Psr7\HttpFactory given, called in .../vendor/ratchet/pawl/src/Connector.php on line 32
When I change it to $this->_negotiator = new ClientNegotiator(null);, the test suite passes again.
It looks like it is also source of the issue reported here: laravel/reverb#310
@mbonneau
I am doing some work on a ibrary that depends on this package, and this line is now causing an issue in the latest version:
When I change it to
$this->_negotiator = new ClientNegotiator(null);, the test suite passes again.It looks like it is also source of the issue reported here: laravel/reverb#310