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 2
2
3
3
namespace Opcodes \LogViewer \Enums ;
4
4
5
- enum FolderSortingMethod: string
5
+ class FolderSortingMethod
6
6
{
7
- case Alphabetical = 'Alphabetical ' ;
8
- case ModifiedTime = 'ModifiedTime ' ;
7
+ public const Alphabetical = 'Alphabetical ' ;
8
+ public const ModifiedTime = 'ModifiedTime ' ;
9
9
}
Original file line number Diff line number Diff line change 2
2
3
3
namespace Opcodes \LogViewer \Enums ;
4
4
5
- enum SortingOrder: string
5
+ class SortingOrder
6
6
{
7
- case Ascending = 'asc ' ;
8
- case Descending = 'desc ' ;
7
+ public const Ascending = 'asc ' ;
8
+ public const Descending = 'desc ' ;
9
9
}
Original file line number Diff line number Diff line change 2
2
3
3
namespace Opcodes \LogViewer \Enums ;
4
4
5
- enum Theme: string
5
+ class Theme
6
6
{
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 ' ;
10
10
}
You can’t perform that action at this time.
0 commit comments