1
0

Added fetchLimit overrides to EGG
All checks were successful
Build Docker and Deploy / Build Docker (push) Successful in 1m37s
Build Docker and Deploy / Deploy to Server (push) Successful in 20s

This commit is contained in:
2025-12-15 12:14:42 +01:00
parent e818013438
commit 824f4c1c62
8 changed files with 63 additions and 23 deletions

View File

@@ -18,8 +18,11 @@ interface IRemoteSource
abstract class StandardGitConnection implements IRemoteSource
{
/** @var ILogger $logger */
protected $logger;
/** @var ILogger $logger */
protected $logger;
/** @var IConfigSource $cfgSource */
protected $cfgSource;
/** @var string $name */
protected $name;
@@ -31,14 +34,16 @@ abstract class StandardGitConnection implements IRemoteSource
protected $exclusions;
/**
* @param ILogger $logger
* @param string $name
* @param ILogger $logger
* @param IConfigSource $cfg
* @param string $name
* @param string $filter
* @param string[] exclusions
*/
public function __construct(ILogger $logger, string $name, string $filter, array $exclusions)
public function __construct(ILogger $logger, IConfigSource $cfg, string $name, string $filter, array $exclusions)
{
$this->logger = $logger;
$this->logger = $logger;
$this->cfgSource = $cfg;
$this->name = $name;
$this->filter = $filter;
$this->exclusions = $exclusions;