[EVENT] Rename event names to camel case to make finding handlers easier

This commit is contained in:
Hugo Sales
2020-10-19 18:22:59 +00:00
committed by Hugo Sales
parent 0b759da780
commit 1949e0b987
6 changed files with 8 additions and 8 deletions

View File

@@ -197,7 +197,7 @@ class Note extends Entity
public function getAvatarUrl()
{
$url = null;
Event::handle('get_avatar_url', [$this->getActorNickname(), &$url]);
Event::handle('GetAvatarUrl', [$this->getActorNickname(), &$url]);
return $url;
}