1: <?php
2:
3: declare(strict_types=1);
4:
5: /**
6: * This file is part of the Nexus MCP SDK package.
7: *
8: * (c) 2025 John Paul E. Balandan, CPA <paulbalandan@gmail.com>
9: *
10: * For the full copyright and license information, please view
11: * the LICENSE file that was distributed with this source code.
12: */
13:
14: namespace Nexus\Mcp\Message;
15:
16: /**
17: * A notification which does not expect a response.
18: */
19: final readonly class JsonRpcNotification extends Notification
20: {
21: /**
22: * @param non-empty-string $jsonrpc JSON-RPC version. Must be 2.0.
23: * @param non-empty-string $method The notification method.
24: * @param null|array<string, mixed> $params Additional parameters.
25: */
26: public function __construct(string $jsonrpc, string $method, ?array $params = null)
27: {
28: parent::__construct($jsonrpc, $method, $params);
29: }
30: }
31: