MiniAsset\Output\AssetWriter::clearTimestamps PHP Méthode

clearTimestamps() public méthode

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