| 221 | `; |
| 222 | |
| 223 | export class GitHubProfileFetcher { |
| 224 | static async fetchPRStatistics(username: string, userToken?: string | null): Promise<GitHubMetrics> { |
| 225 | const token = userToken || Settings.GITHUB_TOKEN; |
| 226 | if (!token) { |
nothing calls this directly
no outgoing calls
no test coverage detected