Eccube\Entity\Product::getCreator PHP Method

getCreator() public method

Get Creator
public getCreator ( ) : Eccube\Entity\Member
return Eccube\Entity\Member
    public function getCreator()
    {
        return $this->Creator;
    }

Usage Example

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