<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Authorizenet\Model\Response; /** * Factory class for @see \Magento\Authorizenet\Model\Response * @deprecated 100.3.1 Authorize.net is removing all support for this payment method */ class Factory { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $objectManager; /** * Instance name to create * * @var string */ protected $instanceName; /** * Factory constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName */ public function __construct( \Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = \Magento\Authorizenet\Model\Response::class ) { $this->objectManager = $objectManager; $this->instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Authorizenet\Model\Response */ public function create(array $data = []) { return $this->objectManager->create($this->instanceName, $data); } }