You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 19, 2019. It is now read-only.
There is a misspelling error in the execute function
/** * Get quote shipping address id by reserved order id * * @param string $reversedOrderId * @return int */publicfunctionexecute(string$reversedOrderId): int
{
$quote = $this->quoteFactory->create();
$this->quoteResource->load($quote, $reversedOrderId, 'reserved_order_id');
return (int)$quote->getShippingAddress()->getId();
}
Proposed solution
Replace $reversedOrderId with $reservedOrderId.
The text was updated successfully, but these errors were encountered:
Summary (*)
There is a misspelling error in the
execute
functionProposed solution
Replace
$reversedOrderId
with$reservedOrderId
.The text was updated successfully, but these errors were encountered: