File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
app/code/Magento/Multishipping
view/frontend/templates/checkout Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -319,9 +319,18 @@ public function getQuote()
319
319
}
320
320
321
321
/**
322
- * @return mixed
322
+ * @deprecated
323
+ * typo in method name, see getBillingAddressTotals()
323
324
*/
324
325
public function getBillinAddressTotals ()
326
+ {
327
+ return $ this ->getBillingAddressTotals ();
328
+ }
329
+
330
+ /**
331
+ * @return mixed
332
+ */
333
+ public function getBillingAddressTotals ()
325
334
{
326
335
$ address = $ this ->getQuote ()->getBillingAddress ();
327
336
return $ this ->getShippingAddressTotals ($ address );
Original file line number Diff line number Diff line change 186
186
<?php endforeach ; ?>
187
187
</tbody>
188
188
<tfoot>
189
- <?= /* @noEscape */ $ block ->renderTotals ($ block ->getBillinAddressTotals ()); ?>
189
+ <?= /* @noEscape */ $ block ->renderTotals ($ block ->getBillingAddressTotals ()); ?>
190
190
</tfoot>
191
191
</table>
192
192
</div>
You can’t perform that action at this time.
0 commit comments