| Current Path : /var/www/clients/client3/web2/web/vendor/magento/framework/HTTP/Adapter/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/framework/HTTP/Adapter/FileTransferFactory.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\HTTP\Adapter;
class FileTransferFactory
{
/**
* Create HTTP adapter
*
* @param array $options
* @return \Zend_File_Transfer_Adapter_Http
*/
public function create(array $options = [])
{
return new \Zend_File_Transfer_Adapter_Http($options);
}
}