You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class GatewayFactory implements GatewayFactoryInterface /* , ContainerConfiguration */ // This class will implement ContainerConfiguration from version 3.0, and will remove the GatewayFactoryInterface
{
/**
* @var GatewayFactoryInterface
*/
protected $coreGatewayFactory;
/**
* @var array
*/
protected $defaultConfig;
public function __construct(array $defaultConfig = [], ?GatewayFactoryInterface $coreGatewayFactory = null)
{
$this->coreGatewayFactory = $coreGatewayFactory ?: new CoreGatewayFactory();