time = $time ?? microtime(true); } /** * Creates a new TimestampCacheEntry * * This method allow Doctrine\Common\Cache\PhpFileCache compatibility * * @param array $values array containing property values */ public static function __set_state(array $values): TimestampCacheEntry { return new self($values['time']); } }