Skip to content

Commit 41d6d26

Browse files
committed
magento/graphql-ce#559: Fix misspelling in GetQuoteShippingAddressIdByReservedQuoteId
1 parent fd2771b commit 41d6d26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dev/tests/api-functional/testsuite/Magento/GraphQl/Quote/GetQuoteShippingAddressIdByReservedQuoteId.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ public function __construct(
4040
/**
4141
* Get quote shipping address id by reserved order id
4242
*
43-
* @param string $reversedOrderId
43+
* @param string $reservedOrderId
4444
* @return int
4545
*/
46-
public function execute(string $reversedOrderId): int
46+
public function execute(string $reservedOrderId): int
4747
{
4848
$quote = $this->quoteFactory->create();
49-
$this->quoteResource->load($quote, $reversedOrderId, 'reserved_order_id');
49+
$this->quoteResource->load($quote, $reservedOrderId, 'reserved_order_id');
5050

5151
return (int)$quote->getShippingAddress()->getId();
5252
}

0 commit comments

Comments
 (0)