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
{
/**
* @param string|null $token
* @return Client
*/
public static function create($token = null)
$request = new Request(new GuzzleHttpAdater(), $token);
$endpointsContainer = new EndpointsContainer($request);
return new Client($endpointsContainer);
}
* @codeCoverageIgnore
private function __clone()
private function __construct()