Pimcore\Model\Tool\Email\Blacklist::getCreationDate PHP 메소드

getCreationDate() 공개 메소드

public getCreationDate ( ) : integer
리턴 integer
    public function getCreationDate()
    {
        if (!$this->creationDate) {
            $this->creationDate = time();
        }
        return $this->creationDate;
    }