PartKeepr\StockBundle\Entity\StockEntry::checkPrice PHP Method

checkPrice() public method

If the stock level is negative, we can't have a price.
public checkPrice ( )
    public function checkPrice()
    {
        if ($this->getStockLevel() < 0 && $this->getPrice() !== null) {
            $this->setPrice(null);
        }
    }