Eccube\Entity\Product::getCreator PHP 메소드

getCreator() 공개 메소드

Get Creator
public getCreator ( ) : Eccube\Entity\Member
리턴 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();
 }