ManaPHP\Component::attachEvent PHP Method

attachEvent() public method

Attach a listener to the events manager
public attachEvent ( string $event, callable $handler ) : static
$event string
$handler callable
return static
    public function attachEvent($event, $handler)
    {
        $this->eventsManager->attachEvent($event, $handler);
        return $this;
    }