1
0
Files
www.mikescher.com/www/extern/egg/Interfaces.php
Mike Schwörer 824f4c1c62
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
Added fetchLimit overrides to EGG
2025-12-15 12:14:42 +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;
}