Give Event a default toString

This commit is contained in:
Shish 2019-12-07 22:49:02 +00:00
parent 7ca484972f
commit 0806b2e5f0

View file

@ -11,6 +11,11 @@ abstract class Event
public function __construct()
{
}
public function __toString()
{
return var_export($this, true);
}
}