mirror of
https://github.com/bitinflow/bunny-cli.git
synced 2026-03-13 13:45:54 +00:00
15 lines
278 B
PHP
15 lines
278 B
PHP
<?php
|
|
|
|
|
|
namespace App\Bunny\Filesystem;
|
|
|
|
|
|
class CompareOptions
|
|
{
|
|
const START = 'start';
|
|
const NO_SHA256_VERIFICATION = 'no_sha256_verification';
|
|
const NO_SHA256_GENERATION = 'no_sha256_generation';
|
|
const LOCK_FILE = 'lock_file';
|
|
const DRY_RUN = 'dry-run';
|
|
}
|