Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(analyzer): Improve PackageManager class documentation #9637

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions analyzer/src/main/kotlin/PackageManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ typealias ManagedProjectFiles = Map<PackageManagerFactory, List<File>>
typealias ProjectResults = Map<File, List<ProjectAnalyzerResult>>

/**
* A class to represent a package manager of the given [managerName] that handles dependencies for the given
* [projectType]. The analysis of any projects and their dependencies starts in the [analysisRoot] directory using the
* given general [analyzerConfig]. Per-repository configuration is passed in [repoConfig].
* A class to represent a package manager with the given [managerName] that handles projects of the given [projectType].
* The analysis of any projects and their dependencies starts in the [analysisRoot] directory using the given
* [analyzerConfig]. Any project-specific configuration stored in the repository is passed as [repoConfig].
*/
abstract class PackageManager(
val managerName: String,
Expand Down
Loading