ManaPHP\Component::attachEvent PHP Метод

attachEvent() публичный Метод

Attach a listener to the events manager
public attachEvent ( string $event, callable $handler ) : static
$event string
$handler callable
Результат static
    public function attachEvent($event, $handler)
    {
        $this->eventsManager->attachEvent($event, $handler);
        return $this;
    }