PHPDaemon\Traits\EventHandlers::on PHP 메소드

on() 공개 메소드

Bind event or events
public on ( string | array $event, callable $cb ) : this
$event string | array Event name
$cb callable Callback
리턴 this
    public function on($event, $cb)
    {
        return $this->bind($event, $cb);
    }