Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | namespace Apie\Core\Enums; |
| 3 | |
| 4 | /** |
| 5 | * Special enum used for file uploads in edit resource actions to tell the file upload will not be changed. |
| 6 | */ |
| 7 | enum DoNotChangeUploadedFile: string |
| 8 | { |
| 9 | case DoNotChange = 'DoNotChange'; |
| 10 | } |