MiniAsset\Output\AssetWriter::clearTimestamps PHP Method

clearTimestamps() public method

Clear timestamps for assets.
public clearTimestamps ( ) : void
return void
    public function clearTimestamps()
    {
        $path = $this->path . static::BUILD_TIME_FILE;
        if (file_exists($path)) {
            unlink($this->path . static::BUILD_TIME_FILE);
        }
    }