Bravo3\Orm\Services\PubSubManager::removeListener PHP Method

removeListener() public method

Removes the callbacks assigned to database driver PubSub mechanism.
public removeListener ( string $channel, callable $callback ) : PubSubManager
$channel string
$callback callable
return PubSubManager
    public function removeListener($channel, callable $callback)
    {
        $this->event_dispatcher->removeListener(static::generateEventName($channel), $callback);
        return $this;
    }