Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | enum CodeFileWriteOperationEnum: string |
||
8 | { |
||
9 | /** |
||
10 | * The code file is new. |
||
11 | */ |
||
12 | case SAVE = 'save'; |
||
13 | /** |
||
14 | * The new code file and the existing one are identical. |
||
15 | */ |
||
16 | case SKIP = 'skip'; |
||
17 | |||
18 | /** |
||
19 | * Operations map to be performed. |
||
20 | */ |
||
21 | public static function getLabels(): array |
||
29 |