Skip to content

Commit ca50272

Browse files
author
Ievgen Shakhsuvarov
committed
MAGETWO-39372: Build stabilization
- Static
1 parent 152f2c3 commit ca50272

File tree

8 files changed

+12
-26
lines changed

8 files changed

+12
-26
lines changed

app/code/Magento/Captcha/composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"magento/module-store": "0.74.0-beta14",
77
"magento/module-customer": "0.74.0-beta14",
88
"magento/module-checkout": "0.74.0-beta14",
9-
"magento/module-quote": "0.74.0-beta14",
109
"magento/module-backend": "0.74.0-beta14",
1110
"magento/framework": "0.74.0-beta14",
1211
"magento/magento-composer-installer": "*"

app/code/Magento/Checkout/Block/Checkout/LayoutProcessor.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,9 @@ public function process($jsLayout)
6565
)) {
6666
$jsLayout['components']['checkout']['children']['steps']['children']['billing-step']['children']
6767
['payment']['children']['payments-list']['children'] =
68-
array_merge_recursive($jsLayout['components']['checkout']['children']['steps']['children']
69-
['billing-step']['children']['payment']['children']['payments-list']['children'],
68+
array_merge_recursive(
69+
$jsLayout['components']['checkout']['children']['steps']['children']['billing-step']['children']
70+
['payment']['children']['payments-list']['children'],
7071
$this->processPaymentConfiguration(
7172
$jsLayout['components']['checkout']['children']['steps']['children']['billing-step']['children']
7273
['payment']['children']['renders']['children'],

app/code/Magento/Checkout/Model/GuestPaymentInformationManagement.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ public function __construct(
3333
\Magento\Quote\Api\GuestBillingAddressManagementInterface $billingAddressManagement,
3434
\Magento\Quote\Api\GuestPaymentMethodManagementInterface $paymentMethodManagement,
3535
\Magento\Quote\Api\GuestCartManagementInterface $cartManagement
36-
3736
) {
3837
$this->billingAddressManagement = $billingAddressManagement;
3938
$this->paymentMethodManagement = $paymentMethodManagement;
@@ -63,7 +62,7 @@ public function savePaymentInformation(
6362
\Magento\Quote\Api\Data\AddressInterface $billingAddress
6463
) {
6564
$billingAddress->setEmail($email);
66-
$this->billingAddressManagement->assign($cartId, $billingAddress);
65+
$this->billingAddressManagement->assign($cartId, $billingAddress);
6766
$this->paymentMethodManagement->set($cartId, $paymentMethod);
6867
return true;
6968
}

app/code/Magento/Checkout/Model/PaymentInformationManagement.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ public function __construct(
3333
\Magento\Quote\Api\BillingAddressManagementInterface $billingAddressManagement,
3434
\Magento\Quote\Api\PaymentMethodManagementInterface $paymentMethodManagement,
3535
\Magento\Quote\Api\CartManagementInterface $cartManagement
36-
3736
) {
3837
$this->billingAddressManagement = $billingAddressManagement;
3938
$this->paymentMethodManagement = $paymentMethodManagement;

app/code/Magento/Checkout/Model/ShippingInformationManagement.php

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,7 @@
1212
use \Magento\Quote\Model\QuoteAddressValidator;
1313

1414
class ShippingInformationManagement implements \Magento\Checkout\Api\ShippingInformationManagementInterface
15-
{/**
16-
* @var \Magento\Quote\Api\GuestShippingAddressManagementInterface
17-
*/
18-
protected $shippingAddressManagement;
19-
20-
/**
21-
* @var \Magento\Quote\Api\GuestShippingMethodManagementInterface
22-
*/
23-
protected $shippingMethodManagement;
24-
15+
{
2516
/**
2617
* @var \Magento\Quote\Api\PaymentMethodManagementInterface
2718
*/
@@ -69,15 +60,16 @@ class ShippingInformationManagement implements \Magento\Checkout\Api\ShippingInf
6960
protected $scopeConfig;
7061

7162
/**
72-
* @param \Magento\Quote\Api\ShippingAddressManagementInterface $shippingAddressManagement
73-
* @param \Magento\Quote\Api\ShippingMethodManagementInterface $shippingMethodManagement
7463
* @param \Magento\Quote\Api\PaymentMethodManagementInterface $paymentMethodManagement
75-
* @param PaymentDetailsFactory $paymentDetailsFactory
64+
* @param \Magento\Checkout\Model\PaymentDetailsFactory $paymentDetailsFactory
7665
* @param \Magento\Quote\Api\CartTotalRepositoryInterface $cartTotalsRepository
66+
* @param \Magento\Quote\Model\QuoteRepository $quoteRepository
67+
* @param \Magento\Quote\Model\QuoteAddressValidator $addressValidator
68+
* @param Logger $logger
69+
* @param \Magento\Customer\Api\AddressRepositoryInterface $addressRepository
70+
* @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
7771
*/
7872
public function __construct(
79-
\Magento\Quote\Api\ShippingAddressManagementInterface $shippingAddressManagement,
80-
\Magento\Quote\Api\ShippingMethodManagementInterface $shippingMethodManagement,
8173
\Magento\Quote\Api\PaymentMethodManagementInterface $paymentMethodManagement,
8274
\Magento\Checkout\Model\PaymentDetailsFactory $paymentDetailsFactory,
8375
\Magento\Quote\Api\CartTotalRepositoryInterface $cartTotalsRepository,
@@ -87,8 +79,6 @@ public function __construct(
8779
\Magento\Customer\Api\AddressRepositoryInterface $addressRepository,
8880
\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
8981
) {
90-
$this->shippingAddressManagement = $shippingAddressManagement;
91-
$this->shippingMethodManagement = $shippingMethodManagement;
9282
$this->paymentMethodManagement = $paymentMethodManagement;
9383
$this->paymentDetailsFactory = $paymentDetailsFactory;
9484
$this->cartTotalsRepository = $cartTotalsRepository;

app/code/Magento/Checkout/Test/Unit/Model/Cart/ImageProviderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ protected function setUp()
2727
{
2828
$this->itemRepositoryMock = $this->getMock('Magento\Quote\Api\CartItemRepositoryInterface', [], [], '', false);
2929
$this->itemPoolMock = $this->getMock('Magento\Checkout\CustomerData\ItemPoolInterface', [], [], '', false);
30-
$this->model = new \Magento\Checkout\Model\Cart\ImageProvider (
30+
$this->model = new \Magento\Checkout\Model\Cart\ImageProvider(
3131
$this->itemRepositoryMock,
3232
$this->itemPoolMock
3333
);

app/code/Magento/CheckoutAgreements/composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"magento/module-checkout": "0.74.0-beta14",
77
"magento/module-store": "0.74.0-beta14",
88
"magento/module-backend": "0.74.0-beta14",
9-
"magento/module-ui": "0.74.0-beta14",
109
"magento/framework": "0.74.0-beta14",
1110
"magento/magento-composer-installer": "*"
1211
},

app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
use Magento\Quote\Model\Cart\CartTotalRepository;
99
use Magento\Quote\Api\Data\TotalsExtensionFactory;
1010

11-
1211
class GrandTotalDetailsPlugin
1312
{
1413
/**

0 commit comments

Comments
 (0)