- Issue created by @berdir
The documented return type is bool, but it's actually NULL by default.
In a test:
$this->assertFalse($event->isAccountChanged());
Cast the return type to bool/initialize it to FALSE.
Strict types would help, but kind of a BC break if you support subclassing those event classes.
Active
3.0
Code