play-code-live/vkplay-live-sdk

View on GitHub
src/Response/ResponseInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

declare(strict_types=1);

namespace PlayCode\VKPlayLiveSDK\Response;

interface ResponseInterface
{
    public function getBody(): string;
    public function getStatusCode(): int;
}