Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
TierPriceBox.php
Go to the documentation of this file.
1 <?php
7 
14 {
18  public function toHtml()
19  {
20  // Hide tier price block in case of MSRP.
21  if (!$this->isMsrpPriceApplicable()) {
22  return parent::toHtml();
23  }
24  }
25 }