-
-
Notifications
You must be signed in to change notification settings - Fork 440
Expand file tree
/
Copy pathBridge.php
More file actions
41 lines (33 loc) · 614 Bytes
/
Bridge.php
File metadata and controls
41 lines (33 loc) · 614 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?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';
/**
* @var string
*/
public const TOTAL_CHANGED = 'total_changed';
}