Give Event a default toString
This commit is contained in:
parent
7ca484972f
commit
0806b2e5f0
1 changed files with 5 additions and 0 deletions
|
@ -11,6 +11,11 @@ abstract class Event
|
|||
public function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
public function __toString()
|
||||
{
|
||||
return var_export($this, true);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Reference in a new issue