edbizarro/bi-connect

View on GitHub
src/Bi/Connect/Interfaces/ConnectInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Bi\Connect\Interfaces;

/**
 * Interface ConnectInterface.
 */
interface ConnectInterface
{
    /**
     * Get the http connector.
     *
     * @return mixed
     */
    public function getHttpClient();

    /**
     * @param $response
     *
     * @return \Bi\Connect\Interfaces\ConnectResponseInterface
     */
    public function response($response);
}