File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -61,25 +61,25 @@ public function __invoke()
6161class QueryBus {
6262 use HandleTrait;
6363
64- public function dispatch (object $ query ): mixed
64+ public function dispatch (object $ query )
6565 {
6666 return $ this ->handle ($ query );
6767 }
6868
69- public function dispatch2 (object $ query ): mixed
69+ public function dispatch2 (object $ query )
7070 {
7171 return $ this ->handle ($ query );
7272 }
7373}
7474
7575interface QueryBusInterface {
76- public function dispatch (object $ query ): mixed ;
76+ public function dispatch (object $ query );
7777}
7878
7979class QueryBusWithInterface implements QueryBusInterface {
8080 use HandleTrait;
8181
82- public function dispatch (object $ query ): mixed
82+ public function dispatch (object $ query )
8383 {
8484 return $ this ->handle ($ query );
8585 }
You can’t perform that action at this time.
0 commit comments