for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace seregazhuk\HeadHunterApi;
use seregazhuk\HeadHunterApi\Adapters\GuzzleHttpAdater;
use seregazhuk\HeadHunterApi\EndPoints\EndpointsContainer;
class Api
{
public function create($token = null)
$request = new Request(new GuzzleHttpAdater(), $token);
$endpointsContainer = new EndpointsContainer($request);
return new Client($endpointsContainer);
}