File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed
Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 22
33namespace Opcodes \LogViewer \Enums ;
44
5- enum FolderSortingMethod: string
5+ class FolderSortingMethod
66{
7- case Alphabetical = 'Alphabetical ' ;
8- case ModifiedTime = 'ModifiedTime ' ;
7+ public const Alphabetical = 'Alphabetical ' ;
8+ public const ModifiedTime = 'ModifiedTime ' ;
99}
Original file line number Diff line number Diff line change 22
33namespace Opcodes \LogViewer \Enums ;
44
5- enum SortingOrder: string
5+ class SortingOrder
66{
7- case Ascending = 'asc ' ;
8- case Descending = 'desc ' ;
7+ public const Ascending = 'asc ' ;
8+ public const Descending = 'desc ' ;
99}
Original file line number Diff line number Diff line change 22
33namespace Opcodes \LogViewer \Enums ;
44
5- enum Theme: string
5+ class Theme
66{
7- case System = 'System ' ;
8- case Light = 'Light ' ;
9- case Dark = 'Dark ' ;
7+ public const System = 'System ' ;
8+ public const Light = 'Light ' ;
9+ public const Dark = 'Dark ' ;
1010}
You can’t perform that action at this time.
0 commit comments