Seditio Source
Root |
./othercms/xenForo 2.2.8/src/vendor/league/event/src/ListenerInterface.php
<?php

namespace League\Event;

interface
ListenerInterface
{
   
/**
     * Handle an event.
     *
     * @param AbstractEvent $event
     *
     * @return void
     */
   
public function handle(AbstractEvent $event);

   
/**
     * Check weather the listener is the given parameter.
     *
     * @param mixed $listener
     *
     * @return bool
     */
   
public function isListener($listener);
}