DawidMazurek/php-jsonrpc-server

View on GitHub
src/Request/IdentifiedJsonRpcRequest.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types = 1);

namespace DawidMazurek\JsonRpc\Request;

interface IdentifiedJsonRpcRequest extends JsonRpcRequest
{
    public function getRequestId(): int;
}