Eccube\Entity\Product::getStockFind PHP Method

getStockFind() public method

Get StockFind
public getStockFind ( ) : boolean
return boolean
    public function getStockFind()
    {
        $this->_calc();
        return max($this->stockFinds);
    }

Usage Example

 /**
  * {@inheritDoc}
  */
 public function getStockFind()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getStockFind', array());
     return parent::getStockFind();
 }