SoapClientFactory.php 479 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @copyright Vertex. All rights reserved. https://www.vertexinc.com/
  4. * @author Mediotype https://www.mediotype.com/
  5. */
  6. namespace Vertex\Tax\Service;
  7. use \Vertex\Utility\SoapClientFactory as Factory;
  8. /**
  9. * Create an instance of SoapClient
  10. */
  11. class SoapClientFactory extends Factory
  12. {
  13. /**
  14. * @inheritdoc
  15. */
  16. public function create($wsdl, array $options = [])
  17. {
  18. return parent::create($wsdl, $options);
  19. }
  20. }