mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 19:53:14 +01:00
32 lines
524 B
PHP
32 lines
524 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Parallel\ValueObject;
|
|
|
|
/**
|
|
* @enum
|
|
*/
|
|
final class Bridge
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const FILE_DIFFS = 'file_diffs';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const SYSTEM_ERRORS = 'system_errors';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const SYSTEM_ERRORS_COUNT = 'system_errors_count';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const FILES = 'files';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const FILES_COUNT = 'files_count';
|
|
}
|