for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
/*
* This file is part of the feed-io package.
*
* (c) Alexandre Debril <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FeedIo\Factory\Builder;
use FeedIo\Adapter\ClientInterface;
use FeedIo\Factory\ClientBuilderInterface;
use \FeedIo\Adapter\Guzzle\Client;
use \GuzzleHttp\Client as GuzzleClient;
/**
* @package FeedIo
class GuzzleClientBuilder implements ClientBuilderInterface
{
* @var array
private $config = [];
* @param array $config
public function __construct(array $config = [])
$this->config = $config;
}
* This method MUST return a \FeedIo\Adapter\ClientInterface instance
* @return \FeedIo\Adapter\ClientInterface
public function getClient() : ClientInterface
return new Client(new GuzzleClient($this->config));
* This method MUST return the name of the main class
* @return string
public function getMainClassName() : string
return '\GuzzleHttp\Client';
* This method MUST return the name of the package name
public function getPackageName() : string
return 'guzzlehttp/guzzle';