refactor: add an Enum for languages

This commit is contained in:
Oliver Davies 2023-02-02 18:06:47 +00:00
parent 4e861685d9
commit b0238beb67
2 changed files with 12 additions and 3 deletions

10
src/Enum/Language.php Normal file
View file

@ -0,0 +1,10 @@
<?php
declare(strict_types=1);
namespace OliverDaviesLtd\BuildConfigs\Enum;
enum Language
{
case PHP;
}