* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ namespace PrestaShop\Module\PsAccounts\Http\Client\Guzzle; /** * Construct the guzzle client depending on PrestaShop version */ class GuzzleClientFactory { /** * @param array $options * * @return GuzzleClient * * @throws \Exception */ public function create($options) { return new Guzzle7Client($options); } }