We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fa982c commit ab68006Copy full SHA for ab68006
1 file changed
tests/Type/Symfony/data/messenger_handle_trait.php
@@ -61,25 +61,25 @@ public function __invoke()
61
class QueryBus {
62
use HandleTrait;
63
64
- public function dispatch(object $query): mixed
+ public function dispatch(object $query)
65
{
66
return $this->handle($query);
67
}
68
69
- public function dispatch2(object $query): mixed
+ public function dispatch2(object $query)
70
71
72
73
74
75
interface QueryBusInterface {
76
- public function dispatch(object $query): mixed;
+ public function dispatch(object $query);
77
78
79
class QueryBusWithInterface implements QueryBusInterface {
80
81
82
83
84
85
0 commit comments