We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ea4e0b commit 59ab088Copy full SHA for 59ab088
2 files changed
src/Server/Transport/InMemoryTransport.php
@@ -21,8 +21,6 @@
21
*/
22
class InMemoryTransport extends BaseTransport implements TransportInterface
23
{
24
- use ManagesTransportCallbacks;
25
-
26
/**
27
* @param list<string> $messages
28
@@ -33,10 +31,6 @@ public function __construct(
33
31
parent::__construct($logger);
34
32
}
35
36
- public function initialize(): void
37
- {
38
- }
39
40
public function onMessage(callable $listener): void
41
42
$this->messageListener = $listener;
src/Server/Transport/StreamableHttpTransport.php
@@ -60,10 +60,6 @@ public function __construct(
60
], $corsHeaders);
61
62
63
64
65
66
67
public function send(string $data, array $context): void
68
69
$this->immediateResponse = $data;
0 commit comments