jaxl / JAXL

Asynchronous, non-blocking I/O, event based PHP library for writing custom TCP/IP client and server implementations. From it's previous versions, library inherits a full blown stable support for XMPP protocol stack. In v3.0, support for HTTP protocol stack was also added.
http://jaxl.readthedocs.org/
Other
379 stars 121 forks source link

Authentication not working if using BOSH with PHP7 #92

Open metex opened 7 years ago

metex commented 7 years ago

In src/jaxl.php on line 228 the line of code

$this->require_xep('0206');

must be

$this->require_xep(array('0206'));

Method require_xep expect an array.