We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd4c8d5 commit 23ec463Copy full SHA for 23ec463
extension.neon
@@ -141,6 +141,7 @@ parameters:
141
websiteTitle: string
142
stubFiles:
143
- stubs/DomainObjectInterface.stub
144
+ - stubs/EventDispatcher.stub
145
- stubs/ObjectStorage.stub
146
- stubs/QueryFactory.stub
147
- stubs/QueryInterface.stub
stubs/EventDispatcher.stub
@@ -0,0 +1,14 @@
1
+<?php
2
+
3
+namespace Psr\EventDispatcher;
4
5
+interface EventDispatcherInterface
6
+{
7
+ /**
8
+ * @template TEvent of object
9
+ * @param TEvent $event
10
+ *
11
+ * @return TEvent
12
+ */
13
+ public function dispatch(object $event);
14
+}
0 commit comments