15 lines
212 B
PHP
15 lines
212 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
use App\Enums\Concerns\Arrayable;
|
|
|
|
enum SourceProviderType: string
|
|
{
|
|
use Arrayable;
|
|
|
|
case GITEA = 'gitea';
|
|
case GITHUB = 'github';
|
|
case GENERIC_GIT = 'generic_git';
|
|
}
|