apimatic/core-interfaces-php

View on GitHub
src/Core/ContextInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace CoreInterfaces\Core;

use CoreInterfaces\Core\Request\RequestInterface;
use CoreInterfaces\Core\Response\ResponseInterface;

interface ContextInterface
{
    public function getRequest(): RequestInterface;
    public function getResponse(): ResponseInterface;
}