Pimcore\Model\Tool\Email\Blacklist::getCreationDate PHP Method

getCreationDate() public method

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