From d154aa02ca1bc45b5b9071a8e14c1961a58cfeae Mon Sep 17 00:00:00 2001 From: Netkas Date: Thu, 15 Dec 2022 21:19:33 -0500 Subject: [PATCH] Updated \ncc\Abstracts > DefinedRemoteSourceType https://git.n64.cc/nosial/ncc/-/issues/28 --- src/ncc/Abstracts/DefinedRemoteSourceType.php | 15 --------------- 1 file changed, 15 deletions(-) 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 ];