You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed ErrorListenerIntegration closure return type — kept : bool to satisfy set_error_handler contract, and cast previous handler result with (bool) to safely handle null returns from chained handlers. Closes #6.
Fixed beforeSend PHPDoc callable shape: second parameter corrected from array<string, mixed> to EventHint|null to match actual call site.
Added typed callable shapes via PHPDoc to Options::$beforeSend, Options::$beforeBreadcrumb, and Options::$integrations for PHPStan validation.
Tightened Scope event processor arrays from callable[] to array<callable(Event): ?Event>.