/opt/cpanel/ea-wappspector/vendor/rector/rector/src/Configuration
Edit: /opt/cpanel/ea-wappspector/vendor/rector/rector/src/Configuration/Option.php (6950B)
* @internal
*/
public const CACHE_CLASS = FileCacheStorage::class;
/**
* @var string
*/
public const DEBUG = 'debug';
/**
* @var string
*/
public const XDEBUG = 'xdebug';
/**
* @var string
*/
public const CONFIG = 'config';
/**
* @internal Use @see \Rector\Config\RectorConfig::phpstanConfig() instead
* @var string
*/
public const PHPSTAN_FOR_RECTOR_PATHS = 'phpstan_for_rector_paths';
/**
* @var string
*/
public const NO_DIFFS = 'no-diffs';
/**
* @var string
*/
public const AUTOLOAD_FILE_SHORT = 'a';
/**
* @var string
*/
public const PARALLEL_IDENTIFIER = 'identifier';
/**
* @var string
*/
public const PARALLEL_PORT = 'port';
/**
* @internal Use @see \Rector\Config\RectorConfig::parallel() instead with pass int $jobSize parameter
* @var string
*/
public const PARALLEL_JOB_SIZE = 'parallel-job-size';
/**
* @internal Use @see \Rector\Config\RectorConfig::parallel() instead with pass int $maxNumberOfProcess parameter
* @var string
*/
public const PARALLEL_MAX_NUMBER_OF_PROCESSES = 'parallel-max-number-of-processes';
/**
* @internal Use @see \Rector\Config\RectorConfig::parallel() instead with pass int $seconds parameter
* @var string
*/
public const PARALLEL_JOB_TIMEOUT_IN_SECONDS = 'parallel-job-timeout-in-seconds';
/**
* @var string
*/
public const MEMORY_LIMIT = 'memory-limit';
/**
* @internal Use @see \Rector\Config\RectorConfig::indent() method
* @var string
*/
public const INDENT_CHAR = 'indent-char';
/**
* @internal Use @see \Rector\Config\RectorConfig::indent() method
* @var string
*/
public const INDENT_SIZE = 'indent-size';
/**
* @internal Use @see \Rector\Config\RectorConfig::removeUnusedImports() method
* @var string
*/
public const REMOVE_UNUSED_IMPORTS = 'remove-unused-imports';
/**
* @internal Use @see \Rector\Config\RectorConfig::containerCacheDirectory() method
* @var string
*/
public const CONTAINER_CACHE_DIRECTORY = 'container-cache-directory';
/**
* @internal For cache invalidation in case of change
* @var string
*/
public const REGISTERED_RECTOR_RULES = 'registered_rector_rules';
/**
* @internal For cache invalidation in case of change
* @var string
*/
public const REGISTERED_RECTOR_SETS = 'registered_rector_sets';
/**
* @internal For verify skipped rules exists in registered rules
* @var string
*/
public const SKIPPED_RECTOR_RULES = 'skipped_rector_rules';
/**
* @internal For collect skipped start with short open tag files to be reported
* @var string
*/
public const SKIPPED_START_WITH_SHORT_OPEN_TAG_FILES = 'skipped_start_with_short_open_tag_files';
/**
* @internal For reporting with absolute paths instead of relative paths (default behaviour)
* @see \Rector\Config\RectorConfig::reportingRealPath()
* @var string
*/
public const ABSOLUTE_FILE_PATH = 'absolute_file_path';
/**
* @internal To add editor links to console output
* @see \Rector\Config\RectorConfig::editorUrl()
* @var string
*/
public const EDITOR_URL = 'editor_url';
}