1
0
Files
www.mikescher.com/www/extern/egg/IConfigSource.php
Mike Schwörer b6b9a43233
All checks were successful
Build Docker and Deploy / Build Docker (push) Successful in 18s
Build Docker and Deploy / Deploy to Server (push) Successful in 21s
Added fetchLimit overrides to EGG
2025-12-15 12:30:52 +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;
}