Phastlight\EventEmitter::on PHP Method

on() public method

add a listener to the end of the listeners array for the specified event
public on ( $event, $listener )
    public function on($event, $listener)
    {
        $this->addListener($event, $listener);
    }