Eccube\Entity\Product::getCreateDate PHP Method

getCreateDate() public method

Get create_date
public getCreateDate ( ) : DateTime
return DateTime
    public function getCreateDate()
    {
        return $this->create_date;
    }

Usage Example

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