Move enums into their own namespace

This commit is contained in:
Alex Cabal 2024-11-08 16:34:21 -06:00
parent c3c588cc1b
commit be5574eaec
45 changed files with 164 additions and 154 deletions

7
lib/Enums/ViewType.php Normal file
View file

@ -0,0 +1,7 @@
<?
namespace Enums;
enum ViewType: string{
case Grid = 'grid';
case List = 'list';
}