| Author | Dave Jarvis <email> |
|---|---|
| Date | 2026-02-09 00:15:13 GMT-0800 |
| Commit | 5ce3bf07b69aa97b744423c3efb608b6f8e6503c |
| Parent | ac90747 |
| Delta | 2 lines added, 7 lines removed, 5-line decrease |
|---|
| private $repositories; | ||
| - public function __construct(string $repoPath) { | ||
| - $repoList = new RepositoryList($repoPath); | ||
| - | ||
| - $this->repositories = []; | ||
| - $repoList->foreach(function($repo) { | ||
| - $this->repositories[] = $repo; | ||
| - }); | ||
| + public function __construct(array $repositories) { | ||
| + $this->repositories = $repositories; | ||
| } | ||