1234567891011121314151617181920212223 |
- <?php
- /**
- * @copyright Vertex. All rights reserved. https://www.vertexinc.com/
- * @author Mediotype https://www.mediotype.com/
- */
- namespace Vertex\Tax\Service;
- use \Vertex\Utility\ServiceActionPerformerFactory as Factory;
- /**
- * Factory for ServiceActionPerformer
- */
- class ServiceActionPerformerFactory extends Factory
- {
- /**
- * @inheritdoc
- */
- public function create(array $parameters)
- {
- return parent::create($parameters);
- }
- }
|