Eccube\Entity\Product::setFreeArea PHP Method

setFreeArea() public method

Set free_area
public setFreeArea ( string $freeArea ) : Product
$freeArea string
return Product
    public function setFreeArea($freeArea)
    {
        $this->free_area = $freeArea;
        return $this;
    }

Usage Example

コード例 #1
0
 /**
  * {@inheritDoc}
  */
 public function setFreeArea($freeArea)
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFreeArea', array($freeArea));
     return parent::setFreeArea($freeArea);
 }