vito/app/Enums/SourceControl.php
Saeed Vaziry 5c72f12490 init
2023-07-02 12:47:50 +02:00

17 lines
222 B
PHP

<?php
namespace App\Enums;
use BenSampo\Enum\Enum;
final class SourceControl extends Enum
{
const GITHUB = 'github';
const GITLAB = 'gitlab';
const BITBUCKET = 'bitbucket';
const CUSTOM = 'custom';
}