eZ\Publish\Core\Repository\TrashService::getDateTime PHP Method

getDateTime() protected method

protected getDateTime ( integer $timestamp ) : DateTime
$timestamp integer
return DateTime
    protected function getDateTime($timestamp)
    {
        $dateTime = new DateTime();
        $dateTime->setTimestamp($timestamp);
        return $dateTime;
    }