Skip to content

Commit

Permalink
Fix static test.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmalevanec committed Jan 18, 2019
1 parent 2b88353 commit 304e7e8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ public function getPlaceholderId()
*/
public function isMsgVisible()
{
return $this->getStockQty() > 0 && $this->getStockQtyLeft() > 0 && $this->getStockQtyLeft() <= $this->getThresholdQty();
return $this->getStockQty() > 0 && $this->getStockQtyLeft() > 0
&& $this->getStockQtyLeft() <= $this->getThresholdQty();
}

/**
Expand Down

0 comments on commit 304e7e8

Please sign in to comment.