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

publish() public method

Returns true on success of delivery of the message, or false on failure. Usually a message delivery fails if there are not subscribed clients for the channel.
public publish ( string $channel, string $message ) : boolean
$channel string
$message string
return boolean
    public function publish($channel, $message)
    {
        return (bool) $this->driver->publishMessage($channel, $message);
    }