Improve caching, performance and add dry-run

This commit is contained in:
René Preuß
2021-07-22 16:42:01 +02:00
parent 53cff7d805
commit 820287dd2c
13 changed files with 342 additions and 40 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace App\Bunny\Filesystem;
class CompareOptions
{
const START = 'start';
const NO_SHA256_CACHE = 'no_sha256_cache';
const NO_SHA256_GENERATION = 'no_sha256_generation';
const SHA256_NAME = 'sha256_name';
const DRY_RUN = 'dry-run';
}