Added fetchLimit overrides to EGG
This commit is contained in:
17
www/extern/egg/RemoteSource.php
vendored
17
www/extern/egg/RemoteSource.php
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user