Updated \ncc\Abstracts > DefinedRemoteSourceType

https://git.n64.cc/nosial/ncc/-/issues/28
This commit is contained in:
Netkas 2022-12-15 21:19:33 -05:00
parent eab6c2765f
commit d154aa02ca

View file

@ -4,20 +4,6 @@
abstract class DefinedRemoteSourceType 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 * THe remote source is from gitlab or a custom gitlab instance
* *
@ -41,7 +27,6 @@
const Github = 'github'; const Github = 'github';
const All = [ const All = [
self::Git,
self::Gitlab, self::Gitlab,
self::Github self::Github
]; ];