Skip to content

Commit 67813d9

Browse files
authored
Merge branch 'modelcontextprotocol:main' into main
2 parents 56678d8 + 59ab088 commit 67813d9

File tree

3 files changed

+1
-11
lines changed

3 files changed

+1
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ $server = Server::builder()
254254
- [Server Builder](docs/server-builder.md) - Complete ServerBuilder reference and configuration
255255
- [Transports](docs/transports.md) - STDIO and HTTP transport setup and usage
256256
- [MCP Elements](docs/mcp-elements.md) - Creating tools, resources, and prompts
257-
- [Client Communiocation](docs/client-communication.md) - Communicating back to the client from server-side
257+
- [Client Communication](docs/client-communication.md) - Communicating back to the client from server-side
258258

259259
**Learning:**
260260
- [Examples](docs/examples.md) - Comprehensive example walkthroughs

src/Server/Transport/InMemoryTransport.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
*/
2222
class InMemoryTransport extends BaseTransport
2323
{
24-
use ManagesTransportCallbacks;
25-
2624
/**
2725
* @param list<string> $messages
2826
*/
@@ -33,10 +31,6 @@ public function __construct(
3331
parent::__construct($logger);
3432
}
3533

36-
public function initialize(): void
37-
{
38-
}
39-
4034
public function onMessage(callable $listener): void
4135
{
4236
$this->messageListener = $listener;

src/Server/Transport/StreamableHttpTransport.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,6 @@ public function __construct(
6060
], $corsHeaders);
6161
}
6262

63-
public function initialize(): void
64-
{
65-
}
66-
6763
public function send(string $data, array $context): void
6864
{
6965
$this->immediateResponse = $data;

0 commit comments

Comments
 (0)