Skip to content

Commit c36fdc2

Browse files
ENGCOM-1811: [Forwardport] Fix method name (typo) #15745
- Merge Pull Request #15745 from vijay-wagento/magento2:2.3-develop-PR-port-15514 - Merged commits: 1. 6bc77cb 2. c494d73 3. 6e2dea6 4. 9850d9c 5. c2765a7
2 parents 943e2cd + c2765a7 commit c36fdc2

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

app/code/Magento/Multishipping/Block/Checkout/Overview.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,9 +319,19 @@ public function getQuote()
319319
}
320320

321321
/**
322+
* @deprecated
323+
* typo in method name, see getBillingAddressTotals()
322324
* @return mixed
323325
*/
324326
public function getBillinAddressTotals()
327+
{
328+
return $this->getBillingAddressTotals();
329+
}
330+
331+
/**
332+
* @return mixed
333+
*/
334+
public function getBillingAddressTotals()
325335
{
326336
$address = $this->getQuote()->getBillingAddress();
327337
return $this->getShippingAddressTotals($address);

app/code/Magento/Multishipping/Block/Checkout/Shipping.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Magento\Quote\Model\Quote\Address;
1010

1111
/**
12-
* Multishipping checkout shipping
12+
* Mustishipping checkout shipping
1313
*
1414
* @api
1515
* @author Magento Core Team <[email protected]>

app/code/Magento/Multishipping/view/frontend/templates/checkout/overview.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
<?php endforeach; ?>
187187
</tbody>
188188
<tfoot>
189-
<?= /* @noEscape */ $block->renderTotals($block->getBillinAddressTotals()); ?>
189+
<?= /* @noEscape */ $block->renderTotals($block->getBillingAddressTotals()); ?>
190190
</tfoot>
191191
</table>
192192
</div>

app/code/Magento/User/Model/Backend/Config/ObserverConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function getAdminPasswordLifetime()
7272
}
7373

7474
/**
75-
* Get admin maximum security failures from config
75+
* Get admin maxiumum security failures from config
7676
*
7777
* @return int
7878
*/

0 commit comments

Comments
 (0)