vito/app/Enums/SourceControl.php
2024-03-17 12:26:48 +01:00

13 lines
154 B
PHP

<?php
namespace App\Enums;
final class SourceControl
{
const GITHUB = 'github';
const GITLAB = 'gitlab';
const BITBUCKET = 'bitbucket';
}