├── .github └── workflows │ └── main.yml ├── .php-cs-fixer.dist.php ├── LICENSE ├── README.md ├── Taskfile.yml ├── bin └── comments_density ├── composer-require-checker.json ├── composer-unused.php ├── composer.json ├── composer.lock ├── docs └── examples │ ├── OpenIssue.php │ └── RemoveRelaxComment.php ├── example_for_readme.png ├── infection.json5 ├── rectorDowngrade.php ├── src ├── AnalyzeComments │ ├── Analyzer │ │ ├── Analyzer.php │ │ ├── AnalyzerFactory.php │ │ ├── CommentStatisticsAggregator.php │ │ ├── DTO │ │ │ └── Output │ │ │ │ ├── CdsDTO.php │ │ │ │ ├── ComToLocDTO.php │ │ │ │ ├── CommentDTO.php │ │ │ │ ├── CommentStatisticsDTO.php │ │ │ │ ├── PerformanceMetricsDTO.php │ │ │ │ └── Report.php │ │ └── Visitors │ │ │ ├── Checkers │ │ │ └── NodeNeedsDocblockChecker.php │ │ │ ├── CommentVisitor.php │ │ │ └── MissingDocBlockVisitor.php │ ├── Commands │ │ └── AnalyzeCommentCommand.php │ ├── Comments │ │ ├── Comment.php │ │ ├── CommentConstantsInterface.php │ │ ├── CommentTypeFactory.php │ │ ├── CommentTypeInterface.php │ │ ├── DocBlockComment.php │ │ ├── FixMeComment.php │ │ ├── LicenseComment.php │ │ ├── MissingDocBlock.php │ │ ├── RegularComment.php │ │ └── TodoComment.php │ ├── Config │ │ ├── ConfigLoader.php │ │ └── DTO │ │ │ ├── Config.php │ │ │ ├── ConsoleOutputDTO.php │ │ │ ├── HtmlOutputDTO.php │ │ │ ├── MissingDocblockConfigDTO.php │ │ │ └── OutputDTO.php │ ├── Exception │ │ └── CommentsDensityException.php │ ├── File │ │ ├── CommentFinder.php │ │ ├── FileContentExtractor.php │ │ ├── FileEditor.php │ │ ├── FileFinder.php │ │ └── FileTotalLinesCounter.php │ ├── Formatter │ │ ├── ConsoleFormatter.php │ │ ├── Filter │ │ │ └── ViolatingCommentsOnlyFilter.php │ │ ├── FormatterInterface.php │ │ └── HtmlFormatter.php │ └── Metrics │ │ ├── CDS.php │ │ ├── ComToLoc.php │ │ ├── MetricsFacade.php │ │ └── ResourceUtilization.php ├── Baseline │ ├── Commands │ │ └── BaselineCommand.php │ └── Storage │ │ ├── BaselineStorageInterface.php │ │ └── TreePhpBaselineStorage.php ├── ComposerPlugin │ └── CommentsDensityPlugin.php └── Plugin │ └── PluginInterface.php ├── tests ├── Baseline │ └── Storage │ │ └── TreePhpBaselineStorageTest.php ├── Comments │ └── CommentTest.php ├── Composer │ └── CommentsDensityPluginTest.php ├── File │ └── CommentExtractorTest.php ├── Metrics │ ├── CDSTest.php │ ├── ComToLocTest.php │ └── PerformanceMonitorTest.php ├── MissingDocblock │ └── MissingDocBlockAnalyzerTest.php ├── Reporters │ └── HtmlReporterTest.php └── TestFiles │ ├── ClassThatCatchingMethodCallOfAnotherClassWhichDoesNotHaveDocblock.php │ ├── ClassThatNotCatchingExceptionFromCallMethodOfAnotherClass.php │ ├── ClassWithCallForThrowingMethodInDifferentClass.php │ ├── ClassWithCallForThrowingMethodInDifferentClassInTryCatch.php │ ├── ClassWithMethodThatThrowsAndHasTag.php │ ├── ClassWithThrowingMethod.php │ ├── ClassWithThrowingMethodWithoutDocblock.php │ ├── InterfaceExtendsIterable.php │ ├── SubUserArray.php │ ├── TemplatedClass.php │ ├── UserArray.php │ └── UserCollection.php └── vendor-bin ├── composer-require-checker ├── composer.json └── composer.lock └── composer-unused ├── composer.json └── composer.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/Taskfile.yml -------------------------------------------------------------------------------- /bin/comments_density: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/bin/comments_density -------------------------------------------------------------------------------- /composer-require-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/composer-require-checker.json -------------------------------------------------------------------------------- /composer-unused.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/composer-unused.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/examples/OpenIssue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/docs/examples/OpenIssue.php -------------------------------------------------------------------------------- /docs/examples/RemoveRelaxComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/docs/examples/RemoveRelaxComment.php -------------------------------------------------------------------------------- /example_for_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/example_for_readme.png -------------------------------------------------------------------------------- /infection.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/infection.json5 -------------------------------------------------------------------------------- /rectorDowngrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/rectorDowngrade.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Analyzer/Analyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Analyzer/Analyzer.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Analyzer/AnalyzerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Analyzer/AnalyzerFactory.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Analyzer/CommentStatisticsAggregator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Analyzer/CommentStatisticsAggregator.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Analyzer/DTO/Output/CdsDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Analyzer/DTO/Output/CdsDTO.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Analyzer/DTO/Output/ComToLocDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Analyzer/DTO/Output/ComToLocDTO.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Analyzer/DTO/Output/CommentDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Analyzer/DTO/Output/CommentDTO.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Analyzer/DTO/Output/CommentStatisticsDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Analyzer/DTO/Output/CommentStatisticsDTO.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Analyzer/DTO/Output/PerformanceMetricsDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Analyzer/DTO/Output/PerformanceMetricsDTO.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Analyzer/DTO/Output/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Analyzer/DTO/Output/Report.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Analyzer/Visitors/Checkers/NodeNeedsDocblockChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Analyzer/Visitors/Checkers/NodeNeedsDocblockChecker.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Analyzer/Visitors/CommentVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Analyzer/Visitors/CommentVisitor.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Analyzer/Visitors/MissingDocBlockVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Analyzer/Visitors/MissingDocBlockVisitor.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Commands/AnalyzeCommentCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Commands/AnalyzeCommentCommand.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Comments/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Comments/Comment.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Comments/CommentConstantsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Comments/CommentConstantsInterface.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Comments/CommentTypeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Comments/CommentTypeFactory.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Comments/CommentTypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Comments/CommentTypeInterface.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Comments/DocBlockComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Comments/DocBlockComment.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Comments/FixMeComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Comments/FixMeComment.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Comments/LicenseComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Comments/LicenseComment.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Comments/MissingDocBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Comments/MissingDocBlock.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Comments/RegularComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Comments/RegularComment.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Comments/TodoComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Comments/TodoComment.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Config/ConfigLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Config/ConfigLoader.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Config/DTO/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Config/DTO/Config.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Config/DTO/ConsoleOutputDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Config/DTO/ConsoleOutputDTO.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Config/DTO/HtmlOutputDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Config/DTO/HtmlOutputDTO.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Config/DTO/MissingDocblockConfigDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Config/DTO/MissingDocblockConfigDTO.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Config/DTO/OutputDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Config/DTO/OutputDTO.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Exception/CommentsDensityException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Exception/CommentsDensityException.php -------------------------------------------------------------------------------- /src/AnalyzeComments/File/CommentFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/File/CommentFinder.php -------------------------------------------------------------------------------- /src/AnalyzeComments/File/FileContentExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/File/FileContentExtractor.php -------------------------------------------------------------------------------- /src/AnalyzeComments/File/FileEditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/File/FileEditor.php -------------------------------------------------------------------------------- /src/AnalyzeComments/File/FileFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/File/FileFinder.php -------------------------------------------------------------------------------- /src/AnalyzeComments/File/FileTotalLinesCounter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/File/FileTotalLinesCounter.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Formatter/ConsoleFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Formatter/ConsoleFormatter.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Formatter/Filter/ViolatingCommentsOnlyFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Formatter/Filter/ViolatingCommentsOnlyFilter.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Formatter/FormatterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Formatter/FormatterInterface.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Formatter/HtmlFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Formatter/HtmlFormatter.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Metrics/CDS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Metrics/CDS.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Metrics/ComToLoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Metrics/ComToLoc.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Metrics/MetricsFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Metrics/MetricsFacade.php -------------------------------------------------------------------------------- /src/AnalyzeComments/Metrics/ResourceUtilization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/AnalyzeComments/Metrics/ResourceUtilization.php -------------------------------------------------------------------------------- /src/Baseline/Commands/BaselineCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/Baseline/Commands/BaselineCommand.php -------------------------------------------------------------------------------- /src/Baseline/Storage/BaselineStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/Baseline/Storage/BaselineStorageInterface.php -------------------------------------------------------------------------------- /src/Baseline/Storage/TreePhpBaselineStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/Baseline/Storage/TreePhpBaselineStorage.php -------------------------------------------------------------------------------- /src/ComposerPlugin/CommentsDensityPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/ComposerPlugin/CommentsDensityPlugin.php -------------------------------------------------------------------------------- /src/Plugin/PluginInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/src/Plugin/PluginInterface.php -------------------------------------------------------------------------------- /tests/Baseline/Storage/TreePhpBaselineStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/Baseline/Storage/TreePhpBaselineStorageTest.php -------------------------------------------------------------------------------- /tests/Comments/CommentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/Comments/CommentTest.php -------------------------------------------------------------------------------- /tests/Composer/CommentsDensityPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/Composer/CommentsDensityPluginTest.php -------------------------------------------------------------------------------- /tests/File/CommentExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/File/CommentExtractorTest.php -------------------------------------------------------------------------------- /tests/Metrics/CDSTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/Metrics/CDSTest.php -------------------------------------------------------------------------------- /tests/Metrics/ComToLocTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/Metrics/ComToLocTest.php -------------------------------------------------------------------------------- /tests/Metrics/PerformanceMonitorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/Metrics/PerformanceMonitorTest.php -------------------------------------------------------------------------------- /tests/MissingDocblock/MissingDocBlockAnalyzerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/MissingDocblock/MissingDocBlockAnalyzerTest.php -------------------------------------------------------------------------------- /tests/Reporters/HtmlReporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/Reporters/HtmlReporterTest.php -------------------------------------------------------------------------------- /tests/TestFiles/ClassThatCatchingMethodCallOfAnotherClassWhichDoesNotHaveDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/TestFiles/ClassThatCatchingMethodCallOfAnotherClassWhichDoesNotHaveDocblock.php -------------------------------------------------------------------------------- /tests/TestFiles/ClassThatNotCatchingExceptionFromCallMethodOfAnotherClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/TestFiles/ClassThatNotCatchingExceptionFromCallMethodOfAnotherClass.php -------------------------------------------------------------------------------- /tests/TestFiles/ClassWithCallForThrowingMethodInDifferentClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/TestFiles/ClassWithCallForThrowingMethodInDifferentClass.php -------------------------------------------------------------------------------- /tests/TestFiles/ClassWithCallForThrowingMethodInDifferentClassInTryCatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/TestFiles/ClassWithCallForThrowingMethodInDifferentClassInTryCatch.php -------------------------------------------------------------------------------- /tests/TestFiles/ClassWithMethodThatThrowsAndHasTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/TestFiles/ClassWithMethodThatThrowsAndHasTag.php -------------------------------------------------------------------------------- /tests/TestFiles/ClassWithThrowingMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/TestFiles/ClassWithThrowingMethod.php -------------------------------------------------------------------------------- /tests/TestFiles/ClassWithThrowingMethodWithoutDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/TestFiles/ClassWithThrowingMethodWithoutDocblock.php -------------------------------------------------------------------------------- /tests/TestFiles/InterfaceExtendsIterable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/TestFiles/InterfaceExtendsIterable.php -------------------------------------------------------------------------------- /tests/TestFiles/SubUserArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/TestFiles/SubUserArray.php -------------------------------------------------------------------------------- /tests/TestFiles/TemplatedClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/TestFiles/TemplatedClass.php -------------------------------------------------------------------------------- /tests/TestFiles/UserArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/TestFiles/UserArray.php -------------------------------------------------------------------------------- /tests/TestFiles/UserCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/tests/TestFiles/UserCollection.php -------------------------------------------------------------------------------- /vendor-bin/composer-require-checker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/vendor-bin/composer-require-checker/composer.json -------------------------------------------------------------------------------- /vendor-bin/composer-require-checker/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/vendor-bin/composer-require-checker/composer.lock -------------------------------------------------------------------------------- /vendor-bin/composer-unused/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/vendor-bin/composer-unused/composer.json -------------------------------------------------------------------------------- /vendor-bin/composer-unused/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savinmikhail/Comments-Density/HEAD/vendor-bin/composer-unused/composer.lock --------------------------------------------------------------------------------