Skip to content

Commit 1ff8ff3

Browse files
ashishkumarpundeerashishkumarpundeer
authored andcommitted
AC-1096: Sequencing issue and type hint fixed
1 parent 2e2a2a8 commit 1ff8ff3

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

app/code/Magento/QuoteGraphQl/Model/Cart/ExtractQuoteAddressData.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
namespace Magento\QuoteGraphQl\Model\Cart;
99

1010
use Magento\Framework\Api\ExtensibleDataObjectConverter;
11+
use Magento\Framework\GraphQl\Query\Uid;
1112
use Magento\Quote\Api\Data\AddressInterface;
1213
use Magento\Quote\Model\Quote\Address as QuoteAddress;
13-
use Magento\Framework\GraphQl\Query\Uid;
1414

1515
/**
1616
* Extract address fields from an Quote Address model
@@ -27,12 +27,11 @@ class ExtractQuoteAddressData
2727
*/
2828

2929
/** @var Uid */
30-
private $uidEncoder;
30+
private Uid $uidEncoder;
3131

3232
/**
3333
* @param ExtensibleDataObjectConverter $dataObjectConverter
3434
* @param Uid $uidEncoder
35-
* @type object
3635
*/
3736
public function __construct(
3837
ExtensibleDataObjectConverter $dataObjectConverter,

app/code/Magento/QuoteGraphQl/Model/CartItem/CartItemUidArgsProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class CartItemUidArgsProcessor implements ArgumentsProcessorInterface
2121
private const UID = 'cart_item_uid';
2222

2323
/** @var Uid */
24-
private Uid $uidEncoder;
24+
private $uidEncoder;
2525

2626
/**
2727
* @param Uid $uidEncoder

0 commit comments

Comments
 (0)