[EVENT] Fix event handler and rename events to snake_case

This commit is contained in:
Hugo Sales 2020-08-03 20:55:07 +00:00 committed by Hugo Sales
parent 995b4cfb9b
commit aac653d2bd
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 3 additions and 3 deletions

View File

@ -78,7 +78,7 @@ abstract class Event
public static function addHandler(string $name,
callable $handler,
int $priority = 0,
string $ns = 'GNUsocial/'): void
string $ns = 'GNUsocial.'): void
{
self::$dispatcher->addListener(
$ns . $name,
@ -116,9 +116,9 @@ abstract class Event
* @return bool flag saying whether to continue processing, based
* on results of handlers.
*/
public static function handle(string $name, array $args = [], string $ns = 'GNUsocial/'): bool
public static function handle(string $name, array $args = [], string $ns = 'GNUsocial.'): bool
{
return !(self::$dispatcher->dispatch(new GenericEvent($ns . $name, $args), $name)->isPropagationStopped());
return !(self::$dispatcher->dispatch(new GenericEvent($name, $args), $ns . $name)->isPropagationStopped());
}
/**