<?php

namespace App\Enums;

final class SourceControl
{
    const GITHUB = 'github';

    const GITLAB = 'gitlab';

    const BITBUCKET = 'bitbucket';
}