
| Current Path : /var/www/html/store1/vendor/chi-teck/drupal-code-generator/src/Helper/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/store1/vendor/chi-teck/drupal-code-generator/src/Helper/DumperOptions.php |
<?php declare(strict_types=1);
namespace DrupalCodeGenerator\Helper;
/**
* Dumper options.
*/
final class DumperOptions {
/**
* Options constructor.
*/
public function __construct(?bool $replace, bool $dry_run, bool $full_path) {
$this->replace = $replace;
$this->dryRun = $dry_run;
$this->fullPath = $full_path;
}
/**
* Replace flag.
*
* A flag indicating whether the files can be replaced. If not set the
* user will be prompted to confirm replacing of each existing file.
*/
public ?bool $replace;
/**
* Print assets to stdout instead of dumping them to file system.
*/
public bool $dryRun;
/**
* Print full path to dumped assets.
*/
public bool $fullPath;
}