Imbo\Storage\Doctrine::getLastModified PHP Method

getLastModified() public method

public getLastModified ( $user, $imageIdentifier )
    public function getLastModified($user, $imageIdentifier)
    {
        $timestamp = (int) $this->getField($user, $imageIdentifier, 'updated');
        return new DateTime('@' . $timestamp, new DateTimeZone('UTC'));
    }