Skip to content

6.0.0

Compare
Choose a tag to compare
@brendt brendt released this 24 Nov 10:04
· 295 commits to main since this release
bbc3682
  • Support PHP 8.1
  • The EventHandler interface was changed in order to use the spatie/better-types package:
-    public function handles(): array;
+    public function handles(StoredEvent $storedEvent): bool;

-    public function handle(StoredEvent $event);
+    public function handle(StoredEvent $storedEvent): void;