ManaPHP\Component::attachEvent PHP Méthode

attachEvent() public méthode

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