removeAllListeners #
Removes all listeners, either from a specific event or from all events
removeAllListeners([event]) #
Arguments | Type | Description |
---|---|---|
event | string | One of the event described in the Event Handling section of this documentation |
Return Value #
Returns the Kuzzle
object to allow chaining.
Usage #
<?php
use \Kuzzle\Kuzzle;
$kuzzle = new Kuzzle('localhost');
// Removes all listeners on the "queryError" global event
$kuzzle->removeAllListeners('queryError');
// Removes all listeners on all global events
$kuzzle->removeAllListeners();