oxidmod/json-rpc-server

View on GitHub
src/JsonRpcServer/ResponseInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Oxidmod\JsonRpcServer;

interface ResponseInterface
{
    public function toArray(): array;
}