<?php
namespace Payum\Core;
use Payum\Core\Bridge\Spl\ArrayObject;
class GatewayFactory implements GatewayFactoryInterface
{
/**
* @var GatewayFactoryInterface
*/
protected $coreGatewayFactory;
/**
* @var array
*/
protected $defaultConfig;
/**
* @param array $defaultConfig
* @param GatewayFactoryInterface $coreGatewayFactory
*/
public function __construct(array $defaultConfig = array(), GatewayFactoryInterface $coreGatewayFactory = null)
{
$this->coreGatewayFactory = $coreGatewayFactory ?: new CoreGatewayFactory();
$this->defaultConfig = $defaultConfig;
}
/**
* {@inheritDoc}
*/
public function create(array $config = array())
{
return $this->coreGatewayFactory->create($this->createConfig($config));
}
/**
* {@inheritDoc}
*/
public function createConfig(array $config = array())
{
$config = ArrayObject::ensureArrayObject($config);
$config->defaults($this->defaultConfig);
$config->defaults($this->coreGatewayFactory->createConfig((array) $config));
$this->populateConfig($config);
return (array) $config;
}
/**
* {@inheritDoc}
*/
protected function populateConfig(ArrayObject $config)
{
}
}