vito/app/Enums/SourceControl.php
2024-03-24 09:56:34 +01:00

13 lines
154 B
PHP

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