PHPDaemon\Traits\EventHandlers::off PHP Method

off() public method

Unbind event(s) or callback from event(s)
public off ( string | array $event, callable $cb = null ) : this
$event string | array Event name
$cb callable Callback, optional
return this
    public function off($event, $cb = null)
    {
        return $this->unbind($event, $cb);
    }