Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions src/Server/Transport/InMemoryTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
*/
class InMemoryTransport extends BaseTransport implements TransportInterface
{
use ManagesTransportCallbacks;

/**
* @param list<string> $messages
*/
Expand All @@ -33,10 +31,6 @@ public function __construct(
parent::__construct($logger);
}

public function initialize(): void
{
}

public function onMessage(callable $listener): void
{
$this->messageListener = $listener;
Expand Down
4 changes: 0 additions & 4 deletions src/Server/Transport/StreamableHttpTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,6 @@ public function __construct(
], $corsHeaders);
}

public function initialize(): void
{
}

public function send(string $data, array $context): void
{
$this->immediateResponse = $data;
Expand Down