Skip to content

Commit bad8596

Browse files
committed
#19206: Fixed code styles
1 parent f91201c commit bad8596

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/code/Magento/CatalogInventory/Block/Stockqty/AbstractStockqty.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,9 @@ public function getPlaceholderId()
131131
*/
132132
public function isMsgVisible()
133133
{
134-
return $this->getStockQty() > 0 && $this->getStockQtyLeft() > 0 && $this->getStockQtyLeft() <= $this->getThresholdQty();
134+
return $this->getStockQty() > 0
135+
&& $this->getStockQtyLeft() > 0
136+
&& $this->getStockQtyLeft() <= $this->getThresholdQty();
135137
}
136138

137139
/**

0 commit comments

Comments
 (0)