Skip to content

Commit

Permalink
MAGETWO-37143: Sync and stabilization
Browse files Browse the repository at this point in the history
  • Loading branch information
slavvka committed May 8, 2015
1 parent d1a0c4d commit 8ae262f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions app/code/Magento/Payment/Model/ConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
use Magento\Framework\UrlInterface;
use Magento\Framework\View\Asset\Repository;
use Psr\Log\LoggerInterface;
use Magento\Payment\Model\Config as PaymentConfig;

class ConfigProvider implements ConfigProviderInterface
{
/** @var Config */
/** @var PaymentConfig */
protected $config;

/**
Expand All @@ -38,20 +39,20 @@ class ConfigProvider implements ConfigProviderInterface
protected $logger;

/**
* @param Config $config
* @param PaymentConfig $paymentConfig
* @param Repository $assetRepo
* @param RequestInterface $request
* @param UrlInterface $urlBuilder
* @param LoggerInterface $logger
*/
public function __construct(
Config $config,
PaymentConfig $paymentConfig,
Repository $assetRepo,
RequestInterface $request,
UrlInterface $urlBuilder,
LoggerInterface $logger
) {
$this->config = $config;
$this->config = $paymentConfig;
$this->assetRepo = $assetRepo;
$this->request = $request;
$this->urlBuilder = $urlBuilder;
Expand Down

0 comments on commit 8ae262f

Please sign in to comment.