for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of Phraseanet-PHP-SDK.
*
* (c) Alchemy <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PhraseanetSDK\Http\GuzzleHttp;
use PhraseanetSDK\Http\Client;
class GuzzleHttpClient implements Client
{
/**
* @param string $method
* @param string $path
* @param array $query
* @param array $postFields
* @param array $files
* @param array $headers
* @return string
public function call(
$method,
$path,
array $query = array(),
array $postFields = array(),
array $files = array(),
array $headers = array()
) {
// TODO: Implement call() method.
}