mirror of
https://github.com/opdavies/build-configs.git
synced 2025-09-06 11:25:33 +01:00
11 lines
91 B
PHP
11 lines
91 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace App\Enum;
|
||
|
|
||
|
enum ProjectType
|
||
|
{
|
||
|
case Astro;
|
||
|
}
|