mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-25 12:14:02 +01:00
24 lines
385 B
PHP
24 lines
385 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Caching\Enum;
|
|
|
|
/**
|
|
* @enum
|
|
*/
|
|
final class CacheKey
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const CONFIGURATION_HASH_KEY = 'configuration_hash';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const FILE_HASH_KEY = 'file_hash';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const DEPENDENT_FILES_KEY = 'dependency_files_key';
|
|
}
|