Cli\WS::on PHP Method

on() public method

Bind function to event handler
public on ( $event, $func ) : object
$event string
$func callable
return object
    function on($event, $func)
    {
        $this->events[$event] = $func;
        return $this;
    }