for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mechpave\ImgurClient\Api;
use Mechpave\ImgurClient\Http\HttpClientInterface;
/**
* Class AbstractApi
* @package Mechpave\ImgurClient\Api
*/
abstract class AbstractApi
{
* @var HttpClientInterface
protected $httpClient;
* AbstractApi constructor.
* @param HttpClientInterface $httpClient
public function __construct(HttpClientInterface $httpClient)
$this->httpClient = $httpClient;
}