extend \Symfony\Component\EventDispatcher\GenericEvent

This commit is contained in:
2026-07-10 16:40:28 -04:00
parent a48f080d14
commit 5e3a7a1409
+10
View File
@@ -0,0 +1,10 @@
<?php
declare(strict_types=1);
namespace Potter\Event;
use \Symfony\Component\EventDispatcher\GenericEvent;
abstract class AbstractEvent extends GenericEvent implements EventInterface
{ }