| Total Complexity | 1 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | enum CodeFileWriteOperationEnum: string |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * The code file is new. |
||
| 11 | */ |
||
| 12 | case OP_CREATE = 'create'; |
||
| 13 | /** |
||
| 14 | * The code file already exists, and the new one may need to overwrite it. |
||
| 15 | */ |
||
| 16 | case OP_OVERWRITE = 'overwrite'; |
||
| 17 | /** |
||
| 18 | * The new code file and the existing one are identical. |
||
| 19 | */ |
||
| 20 | case OP_SKIP = 'skip'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Operations map to be performed. |
||
| 24 | */ |
||
| 25 | public static function getLabels(): array |
||
| 34 |