12345678910111213141516171819202122232425 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Webapi\Soap;
- /**
- * Class ClientFactory
- * @package Magento\Framework\Webapi\Soap
- */
- class ClientFactory
- {
- /**
- * Factory method for \SoapClient
- *
- * @param string $wsdl
- * @param array $options
- * @return \SoapClient
- */
- public function create($wsdl, array $options = [])
- {
- return new \SoapClient($wsdl, $options);
- }
- }
|