diff --git a/src/ncc/Abstracts/DefinedRemoteSourceType.php b/src/ncc/Abstracts/DefinedRemoteSourceType.php index 5f19f99..34581d8 100644 --- a/src/ncc/Abstracts/DefinedRemoteSourceType.php +++ b/src/ncc/Abstracts/DefinedRemoteSourceType.php @@ -4,20 +4,6 @@ abstract class DefinedRemoteSourceType { - /** - * The remote source is from a generic remote git server - * (Will search for packages with /group/package) - * - * For example if the host is git.example.com and the package is - * group/package, the package will be fetched from - * https://git.example.com/group/package.git - * - * The git client will be used to fetch the package - * but NCC will not be able to easily check for updates - * without having to pull the entire repository - */ - const Git = 'git'; - /** * THe remote source is from gitlab or a custom gitlab instance * @@ -41,7 +27,6 @@ const Github = 'github'; const All = [ - self::Git, self::Gitlab, self::Github ];