1
0
Files
www.mikescher.com/www/extern/egg/IConfigSource.php
Mike Schwörer fcc10e1d70
All checks were successful
Build Docker and Deploy / Build Docker (push) Successful in 18s
Build Docker and Deploy / Deploy to Server (push) Successful in 17s
Added fetchLimit overrides to EGG
2025-12-15 12:54:22 +01:00

10 lines
227 B
PHP

<?php
interface IConfigSource
{
public function getFetchLimitCommits(): int;
public function getFetchLimitBranches(): int;
public function getFetchLimitRepos(): int;
public function getFetchLimitOrgs(): int;
}