ServiceActionPerformerFactory.php 492 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\ServiceActionPerformerFactory as Factory;
  8. /**
  9. * Factory for ServiceActionPerformer
  10. */
  11. class ServiceActionPerformerFactory extends Factory
  12. {
  13. /**
  14. * @inheritdoc
  15. */
  16. public function create(array $parameters)
  17. {
  18. return parent::create($parameters);
  19. }
  20. }