├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ └── Bug-Report.yml └── workflows │ ├── ci.yaml │ └── phar-build.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── benchmarks └── ParserBench.php ├── bin ├── phpcca └── phpcca.bat ├── box.json.dist ├── composer.json ├── composer.lock ├── config.yml ├── docker-compose.yml ├── docker └── php │ └── Dockerfile ├── docs ├── Baseline-Analysis.md ├── Churn-Finding-Hotspots.md ├── Cognitive-Complexity-Analysis.md ├── Configuration.md ├── Creating-Custom-Reporters.md ├── Cyclomatic-Complexity-Analysis.md ├── Halstead-Analysis.md └── Sorting-and-Filtering.md ├── infection.json5 ├── phpbench.json ├── phpcs.xml ├── phpmd.xml ├── phpstan.neon ├── phpstats.yml ├── phpunit.xml.dist ├── readme.md ├── schemas └── baseline.json ├── scripts └── tag.sh ├── src ├── Application.php ├── Business │ ├── Churn │ │ ├── ChangeCounter │ │ │ ├── ChangeCounterFactory.php │ │ │ ├── ChangeCounterInterface.php │ │ │ └── GitChangeCounter.php │ │ ├── ChurnCalculator.php │ │ ├── ChurnMetrics.php │ │ ├── ChurnMetricsCollection.php │ │ └── Report │ │ │ ├── AbstractReport.php │ │ │ ├── ChurnReportFactory.php │ │ │ ├── ChurnReportFactoryInterface.php │ │ │ ├── CsvReport.php │ │ │ ├── HtmlReport.php │ │ │ ├── JsonReport.php │ │ │ ├── MarkdownReport.php │ │ │ ├── ReportGeneratorInterface.php │ │ │ ├── SvgTreemapReport.php │ │ │ └── TreemapMath.php │ ├── CodeCoverage │ │ ├── AbstractXmlCoverageReader.php │ │ ├── CloverReader.php │ │ ├── CoberturaReader.php │ │ ├── CodeCoverageFactory.php │ │ ├── CoverageDetails.php │ │ ├── CoverageReportReaderInterface.php │ │ └── MethodCoverage.php │ ├── Cognitive │ │ ├── Baseline │ │ │ ├── Baseline.php │ │ │ ├── BaselineFile.php │ │ │ └── BaselineSchemaValidator.php │ │ ├── CognitiveMetrics.php │ │ ├── CognitiveMetricsCollection.php │ │ ├── CognitiveMetricsCollector.php │ │ ├── CognitiveMetricsSorter.php │ │ ├── Delta.php │ │ ├── Events │ │ │ ├── FileProcessed.php │ │ │ ├── ParserFailed.php │ │ │ └── SourceFilesFound.php │ │ ├── FindMetricsPluginInterface.php │ │ ├── MetricNames.php │ │ ├── Parser.php │ │ ├── Report │ │ │ ├── CognitiveReportFactory.php │ │ │ ├── CognitiveReportFactoryInterface.php │ │ │ ├── CsvReport.php │ │ │ ├── HtmlReport.php │ │ │ ├── JsonReport.php │ │ │ ├── MarkdownReport.php │ │ │ ├── ReportGeneratorInterface.php │ │ │ └── StreamableReportInterface.php │ │ └── ScoreCalculator.php │ ├── Cyclomatic │ │ ├── CyclomaticComplexityCalculator.php │ │ ├── CyclomaticComplexityCalculatorInterface.php │ │ └── CyclomaticMetrics.php │ ├── Halstead │ │ ├── HalsteadMetrics.php │ │ ├── HalsteadMetricsCalculator.php │ │ └── HalsteadMetricsCalculatorInterface.php │ ├── MetricsFacade.php │ ├── Reporter │ │ ├── AbstractMarkdownReporter.php │ │ ├── MarkdownFormatterTrait.php │ │ └── ReporterRegistry.php │ └── Utility │ │ ├── CoverageDataDetector.php │ │ ├── Datetime.php │ │ ├── DirectoryScanner.php │ │ └── FilenameNormalizer.php ├── Cache │ ├── CacheItem.php │ ├── Exception │ │ └── CacheException.php │ └── FileCache.php ├── CognitiveAnalysisException.php ├── Command │ ├── ChurnCommand.php │ ├── ChurnSpecifications │ │ ├── ChurnCommandContext.php │ │ ├── ChurnCommandSpecification.php │ │ ├── ChurnValidationSpecificationFactory.php │ │ ├── CompositeChurnSpecification.php │ │ ├── CoverageFileExists.php │ │ ├── CoverageFormatExclusivity.php │ │ ├── CoverageFormatSupported.php │ │ ├── CustomExporter.php │ │ └── ReportOptionsComplete.php │ ├── CognitiveMetricsCommand.php │ ├── CognitiveMetricsSpecifications │ │ ├── CognitiveMetricsCommandContext.php │ │ ├── CognitiveMetricsSpecification.php │ │ ├── CognitiveMetricsValidationSpecificationFactory.php │ │ ├── CompositeCognitiveMetricsValidationSpecification.php │ │ ├── CoverageFileExists.php │ │ ├── CoverageFormatExclusivity.php │ │ ├── CoverageFormatSupported.php │ │ ├── CustomExporterValidation.php │ │ ├── SortFieldValid.php │ │ └── SortOrderValid.php │ ├── EventHandler │ │ ├── ParserErrorHandler.php │ │ ├── ProgressBarHandler.php │ │ └── VerboseHandler.php │ ├── Pipeline │ │ ├── ChurnExecutionContext.php │ │ ├── ChurnPipeline.php │ │ ├── ChurnPipelineFactory.php │ │ ├── ChurnPipelineStage.php │ │ ├── ChurnStages │ │ │ ├── ChurnCalculationStage.php │ │ │ ├── ConfigurationStage.php │ │ │ ├── CoverageStage.php │ │ │ ├── OutputStage.php │ │ │ ├── ReportGenerationStage.php │ │ │ └── ValidationStage.php │ │ ├── CognitiveStages │ │ │ ├── BaselineGenerationStage.php │ │ │ ├── BaselineStage.php │ │ │ ├── ConfigurationStage.php │ │ │ ├── CoverageStage.php │ │ │ ├── MetricsCollectionStage.php │ │ │ ├── OutputStage.php │ │ │ ├── ReportGenerationStage.php │ │ │ ├── SortingStage.php │ │ │ └── ValidationStage.php │ │ ├── CommandPipeline.php │ │ ├── CommandPipelineFactory.php │ │ ├── CommandPipelineInterface.php │ │ ├── ExecutionContext.php │ │ └── PipelineStage.php │ ├── Presentation │ │ ├── ChurnTextRenderer.php │ │ ├── CognitiveMetricSummaryTextRenderer.php │ │ ├── CognitiveMetricTextRenderer.php │ │ ├── CognitiveMetricTextRendererInterface.php │ │ ├── MetricFormatter.php │ │ ├── TableHeaderBuilder.php │ │ └── TableRowBuilder.php │ └── Result │ │ └── OperationResult.php ├── Config │ ├── CacheConfig.php │ ├── CognitiveConfig.php │ ├── ConfigFactory.php │ ├── ConfigLoader.php │ ├── ConfigService.php │ ├── MetricsConfig.php │ └── PerformanceConfig.php └── PhpParser │ ├── AnnotationVisitor.php │ ├── CognitiveMetricsVisitor.php │ ├── CombinedMetricsVisitor.php │ ├── CyclomaticComplexityVisitor.php │ └── HalsteadMetricsVisitor.php └── tests ├── Fixtures ├── Coverage │ ├── coverage-clover.xml │ ├── coverage.xml │ ├── testcode-clover.xml │ └── testcode-cobertura.xml ├── CustomReporters │ ├── ConfigAwareChurnTextReporter.php │ ├── ConfigAwareTextReporter.php │ ├── CustomChurnTextReporter.php │ └── CustomTextReporter.php ├── all-metrics-config.yml ├── config-aware-churn-reporter-config.yml ├── config-aware-text-reporter-config.yml ├── config-exporter-config.yml ├── config-with-exclude-patterns.yml ├── config-with-one-metric.yml ├── custom-churn-exporter-config.yml ├── custom-churn-text-reporter-config.yml ├── custom-cognitive-exporter-config.yml ├── custom-exporters-config.yml ├── custom-text-reporter-config.yml ├── cyclomatic-only-config.yml ├── halstead-only-config.yml ├── invalid-custom-exporter-config.yml ├── minimal-config.yml ├── no-detailed-metrics-config.yml ├── single-table-config.yml └── threshold-config.yml ├── TestCode ├── FileWithTwoClasses.php ├── Paginator.php └── WpDebugData.php ├── TestCode2 └── TestClassForCounts.php ├── TraitTestCode ├── ComplexTrait.php ├── EmptyTrait.php └── TestTrait.php └── Unit ├── Business ├── Churn │ ├── ChurnCalculatorTest.php │ └── Report │ │ ├── AbstractReporterTestCase.php │ │ ├── ChurnReporterFactoryCustomTest.php │ │ ├── CsvExportTest.php │ │ ├── CsvReporterContent.csv │ │ ├── HtmlReporterContent.html │ │ ├── HtmlReporterTest.php │ │ ├── JsonReporterContent.json │ │ ├── JsonReporterTest.php │ │ ├── MarkdownReporterContent.md │ │ ├── MarkdownReporterContentWithCoverage.md │ │ ├── MarkdownReporterTest.php │ │ ├── SvgTreemapReporterTest.php │ │ ├── SvgTreemapReporterTest.svg │ │ └── TestCognitiveConfig.php ├── CodeCoverage │ ├── CloverReaderTest.php │ └── CoberturaReaderTest.php ├── Cognitive │ ├── BaselineServiceTest.php │ ├── CognitiveMetricsCollectionTest.php │ ├── CognitiveMetricsCollectorTest.php │ ├── CognitiveMetricsSorterTest.php │ ├── CognitiveMetricsTest.php │ ├── DeltaTest.php │ ├── ParserTest.php │ ├── Report │ │ ├── CognitiveReporterFactoryCustomTest.php │ │ ├── CsvReporterTest.php │ │ ├── HtmlReporterContent.html │ │ ├── HtmlReporterTest.php │ │ ├── JsonReporterTest.php │ │ ├── MarkdownReporterContent_AllMetrics.md │ │ ├── MarkdownReporterContent_CyclomaticOnly.md │ │ ├── MarkdownReporterContent_HalsteadOnly.md │ │ ├── MarkdownReporterContent_Minimal.md │ │ ├── MarkdownReporterContent_NoDetailedMetrics.md │ │ ├── MarkdownReporterContent_SingleTable.md │ │ ├── MarkdownReporterContent_Threshold.md │ │ └── MarkdownReporterTest.php │ └── ScoreCalculatorTest.php ├── CyclomaticComplexity │ └── CyclomaticComplexityCalculatorTest.php ├── DirectoryScannerTest.php ├── Exporter │ └── ExporterRegistryTest.php ├── Halstead │ └── HalsteadMetricsCalculatorTest.php ├── MetricsFacadeCustomExportersTest.php └── MetricsFacadeTest.php ├── Cache ├── CacheItemTest.php ├── Exception │ └── CacheExceptionTest.php └── FileCacheTest.php ├── Command ├── ChurnCommandTest.php ├── ChurnSpecificationPatternTest.php ├── CognitiveMetricsCommandCoverageTest.php ├── CognitiveMetricsCommandTest.php ├── CognitiveMetricsSpecifications │ └── CognitiveMetricsSpecificationPatternTest.php ├── OutputWithAllMetrics.txt ├── OutputWithCyclomaticOnly.txt ├── OutputWithHalsteadOnly.txt ├── OutputWithMinimalConfig.txt ├── OutputWithSingleTable.txt ├── OutputWithThreshold.txt ├── OutputWithoutDetailedMetrics.txt ├── OutputWithoutOptions.txt └── minimal-config.yml ├── Config ├── ConfigLoaderTest.php └── CustomExportersConfigTest.php └── PhpParser ├── AnnotationVisitorTest.php ├── CognitiveMetricsVisitorTest.php ├── CyclomaticComplexityVisitorTest.php └── HalsteadMetricsVisitorTest.php /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug-Report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/.github/ISSUE_TEMPLATE/Bug-Report.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/phar-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/.github/workflows/phar-build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/Makefile -------------------------------------------------------------------------------- /benchmarks/ParserBench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/benchmarks/ParserBench.php -------------------------------------------------------------------------------- /bin/phpcca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/bin/phpcca -------------------------------------------------------------------------------- /bin/phpcca.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/bin/phpcca.bat -------------------------------------------------------------------------------- /box.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/box.json.dist -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/composer.lock -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/config.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/docker/php/Dockerfile -------------------------------------------------------------------------------- /docs/Baseline-Analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/docs/Baseline-Analysis.md -------------------------------------------------------------------------------- /docs/Churn-Finding-Hotspots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/docs/Churn-Finding-Hotspots.md -------------------------------------------------------------------------------- /docs/Cognitive-Complexity-Analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/docs/Cognitive-Complexity-Analysis.md -------------------------------------------------------------------------------- /docs/Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/docs/Configuration.md -------------------------------------------------------------------------------- /docs/Creating-Custom-Reporters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/docs/Creating-Custom-Reporters.md -------------------------------------------------------------------------------- /docs/Cyclomatic-Complexity-Analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/docs/Cyclomatic-Complexity-Analysis.md -------------------------------------------------------------------------------- /docs/Halstead-Analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/docs/Halstead-Analysis.md -------------------------------------------------------------------------------- /docs/Sorting-and-Filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/docs/Sorting-and-Filtering.md -------------------------------------------------------------------------------- /infection.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/infection.json5 -------------------------------------------------------------------------------- /phpbench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/phpbench.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/phpmd.xml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpstats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/phpstats.yml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/readme.md -------------------------------------------------------------------------------- /schemas/baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/schemas/baseline.json -------------------------------------------------------------------------------- /scripts/tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/scripts/tag.sh -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Business/Churn/ChangeCounter/ChangeCounterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/ChangeCounter/ChangeCounterFactory.php -------------------------------------------------------------------------------- /src/Business/Churn/ChangeCounter/ChangeCounterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/ChangeCounter/ChangeCounterInterface.php -------------------------------------------------------------------------------- /src/Business/Churn/ChangeCounter/GitChangeCounter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/ChangeCounter/GitChangeCounter.php -------------------------------------------------------------------------------- /src/Business/Churn/ChurnCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/ChurnCalculator.php -------------------------------------------------------------------------------- /src/Business/Churn/ChurnMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/ChurnMetrics.php -------------------------------------------------------------------------------- /src/Business/Churn/ChurnMetricsCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/ChurnMetricsCollection.php -------------------------------------------------------------------------------- /src/Business/Churn/Report/AbstractReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/Report/AbstractReport.php -------------------------------------------------------------------------------- /src/Business/Churn/Report/ChurnReportFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/Report/ChurnReportFactory.php -------------------------------------------------------------------------------- /src/Business/Churn/Report/ChurnReportFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/Report/ChurnReportFactoryInterface.php -------------------------------------------------------------------------------- /src/Business/Churn/Report/CsvReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/Report/CsvReport.php -------------------------------------------------------------------------------- /src/Business/Churn/Report/HtmlReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/Report/HtmlReport.php -------------------------------------------------------------------------------- /src/Business/Churn/Report/JsonReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/Report/JsonReport.php -------------------------------------------------------------------------------- /src/Business/Churn/Report/MarkdownReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/Report/MarkdownReport.php -------------------------------------------------------------------------------- /src/Business/Churn/Report/ReportGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/Report/ReportGeneratorInterface.php -------------------------------------------------------------------------------- /src/Business/Churn/Report/SvgTreemapReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/Report/SvgTreemapReport.php -------------------------------------------------------------------------------- /src/Business/Churn/Report/TreemapMath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Churn/Report/TreemapMath.php -------------------------------------------------------------------------------- /src/Business/CodeCoverage/AbstractXmlCoverageReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/CodeCoverage/AbstractXmlCoverageReader.php -------------------------------------------------------------------------------- /src/Business/CodeCoverage/CloverReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/CodeCoverage/CloverReader.php -------------------------------------------------------------------------------- /src/Business/CodeCoverage/CoberturaReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/CodeCoverage/CoberturaReader.php -------------------------------------------------------------------------------- /src/Business/CodeCoverage/CodeCoverageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/CodeCoverage/CodeCoverageFactory.php -------------------------------------------------------------------------------- /src/Business/CodeCoverage/CoverageDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/CodeCoverage/CoverageDetails.php -------------------------------------------------------------------------------- /src/Business/CodeCoverage/CoverageReportReaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/CodeCoverage/CoverageReportReaderInterface.php -------------------------------------------------------------------------------- /src/Business/CodeCoverage/MethodCoverage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/CodeCoverage/MethodCoverage.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Baseline/Baseline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Baseline/Baseline.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Baseline/BaselineFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Baseline/BaselineFile.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Baseline/BaselineSchemaValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Baseline/BaselineSchemaValidator.php -------------------------------------------------------------------------------- /src/Business/Cognitive/CognitiveMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/CognitiveMetrics.php -------------------------------------------------------------------------------- /src/Business/Cognitive/CognitiveMetricsCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/CognitiveMetricsCollection.php -------------------------------------------------------------------------------- /src/Business/Cognitive/CognitiveMetricsCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/CognitiveMetricsCollector.php -------------------------------------------------------------------------------- /src/Business/Cognitive/CognitiveMetricsSorter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/CognitiveMetricsSorter.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Delta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Delta.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Events/FileProcessed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Events/FileProcessed.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Events/ParserFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Events/ParserFailed.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Events/SourceFilesFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Events/SourceFilesFound.php -------------------------------------------------------------------------------- /src/Business/Cognitive/FindMetricsPluginInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/FindMetricsPluginInterface.php -------------------------------------------------------------------------------- /src/Business/Cognitive/MetricNames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/MetricNames.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Parser.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Report/CognitiveReportFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Report/CognitiveReportFactory.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Report/CognitiveReportFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Report/CognitiveReportFactoryInterface.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Report/CsvReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Report/CsvReport.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Report/HtmlReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Report/HtmlReport.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Report/JsonReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Report/JsonReport.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Report/MarkdownReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Report/MarkdownReport.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Report/ReportGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Report/ReportGeneratorInterface.php -------------------------------------------------------------------------------- /src/Business/Cognitive/Report/StreamableReportInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/Report/StreamableReportInterface.php -------------------------------------------------------------------------------- /src/Business/Cognitive/ScoreCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cognitive/ScoreCalculator.php -------------------------------------------------------------------------------- /src/Business/Cyclomatic/CyclomaticComplexityCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cyclomatic/CyclomaticComplexityCalculator.php -------------------------------------------------------------------------------- /src/Business/Cyclomatic/CyclomaticComplexityCalculatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cyclomatic/CyclomaticComplexityCalculatorInterface.php -------------------------------------------------------------------------------- /src/Business/Cyclomatic/CyclomaticMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Cyclomatic/CyclomaticMetrics.php -------------------------------------------------------------------------------- /src/Business/Halstead/HalsteadMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Halstead/HalsteadMetrics.php -------------------------------------------------------------------------------- /src/Business/Halstead/HalsteadMetricsCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Halstead/HalsteadMetricsCalculator.php -------------------------------------------------------------------------------- /src/Business/Halstead/HalsteadMetricsCalculatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Halstead/HalsteadMetricsCalculatorInterface.php -------------------------------------------------------------------------------- /src/Business/MetricsFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/MetricsFacade.php -------------------------------------------------------------------------------- /src/Business/Reporter/AbstractMarkdownReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Reporter/AbstractMarkdownReporter.php -------------------------------------------------------------------------------- /src/Business/Reporter/MarkdownFormatterTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Reporter/MarkdownFormatterTrait.php -------------------------------------------------------------------------------- /src/Business/Reporter/ReporterRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Reporter/ReporterRegistry.php -------------------------------------------------------------------------------- /src/Business/Utility/CoverageDataDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Utility/CoverageDataDetector.php -------------------------------------------------------------------------------- /src/Business/Utility/Datetime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Utility/Datetime.php -------------------------------------------------------------------------------- /src/Business/Utility/DirectoryScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Utility/DirectoryScanner.php -------------------------------------------------------------------------------- /src/Business/Utility/FilenameNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Business/Utility/FilenameNormalizer.php -------------------------------------------------------------------------------- /src/Cache/CacheItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Cache/CacheItem.php -------------------------------------------------------------------------------- /src/Cache/Exception/CacheException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Cache/Exception/CacheException.php -------------------------------------------------------------------------------- /src/Cache/FileCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Cache/FileCache.php -------------------------------------------------------------------------------- /src/CognitiveAnalysisException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/CognitiveAnalysisException.php -------------------------------------------------------------------------------- /src/Command/ChurnCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/ChurnCommand.php -------------------------------------------------------------------------------- /src/Command/ChurnSpecifications/ChurnCommandContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/ChurnSpecifications/ChurnCommandContext.php -------------------------------------------------------------------------------- /src/Command/ChurnSpecifications/ChurnCommandSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/ChurnSpecifications/ChurnCommandSpecification.php -------------------------------------------------------------------------------- /src/Command/ChurnSpecifications/ChurnValidationSpecificationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/ChurnSpecifications/ChurnValidationSpecificationFactory.php -------------------------------------------------------------------------------- /src/Command/ChurnSpecifications/CompositeChurnSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/ChurnSpecifications/CompositeChurnSpecification.php -------------------------------------------------------------------------------- /src/Command/ChurnSpecifications/CoverageFileExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/ChurnSpecifications/CoverageFileExists.php -------------------------------------------------------------------------------- /src/Command/ChurnSpecifications/CoverageFormatExclusivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/ChurnSpecifications/CoverageFormatExclusivity.php -------------------------------------------------------------------------------- /src/Command/ChurnSpecifications/CoverageFormatSupported.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/ChurnSpecifications/CoverageFormatSupported.php -------------------------------------------------------------------------------- /src/Command/ChurnSpecifications/CustomExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/ChurnSpecifications/CustomExporter.php -------------------------------------------------------------------------------- /src/Command/ChurnSpecifications/ReportOptionsComplete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/ChurnSpecifications/ReportOptionsComplete.php -------------------------------------------------------------------------------- /src/Command/CognitiveMetricsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/CognitiveMetricsCommand.php -------------------------------------------------------------------------------- /src/Command/CognitiveMetricsSpecifications/CognitiveMetricsCommandContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/CognitiveMetricsSpecifications/CognitiveMetricsCommandContext.php -------------------------------------------------------------------------------- /src/Command/CognitiveMetricsSpecifications/CognitiveMetricsSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/CognitiveMetricsSpecifications/CognitiveMetricsSpecification.php -------------------------------------------------------------------------------- /src/Command/CognitiveMetricsSpecifications/CognitiveMetricsValidationSpecificationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/CognitiveMetricsSpecifications/CognitiveMetricsValidationSpecificationFactory.php -------------------------------------------------------------------------------- /src/Command/CognitiveMetricsSpecifications/CompositeCognitiveMetricsValidationSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/CognitiveMetricsSpecifications/CompositeCognitiveMetricsValidationSpecification.php -------------------------------------------------------------------------------- /src/Command/CognitiveMetricsSpecifications/CoverageFileExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/CognitiveMetricsSpecifications/CoverageFileExists.php -------------------------------------------------------------------------------- /src/Command/CognitiveMetricsSpecifications/CoverageFormatExclusivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/CognitiveMetricsSpecifications/CoverageFormatExclusivity.php -------------------------------------------------------------------------------- /src/Command/CognitiveMetricsSpecifications/CoverageFormatSupported.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/CognitiveMetricsSpecifications/CoverageFormatSupported.php -------------------------------------------------------------------------------- /src/Command/CognitiveMetricsSpecifications/CustomExporterValidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/CognitiveMetricsSpecifications/CustomExporterValidation.php -------------------------------------------------------------------------------- /src/Command/CognitiveMetricsSpecifications/SortFieldValid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/CognitiveMetricsSpecifications/SortFieldValid.php -------------------------------------------------------------------------------- /src/Command/CognitiveMetricsSpecifications/SortOrderValid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/CognitiveMetricsSpecifications/SortOrderValid.php -------------------------------------------------------------------------------- /src/Command/EventHandler/ParserErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/EventHandler/ParserErrorHandler.php -------------------------------------------------------------------------------- /src/Command/EventHandler/ProgressBarHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/EventHandler/ProgressBarHandler.php -------------------------------------------------------------------------------- /src/Command/EventHandler/VerboseHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/EventHandler/VerboseHandler.php -------------------------------------------------------------------------------- /src/Command/Pipeline/ChurnExecutionContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/ChurnExecutionContext.php -------------------------------------------------------------------------------- /src/Command/Pipeline/ChurnPipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/ChurnPipeline.php -------------------------------------------------------------------------------- /src/Command/Pipeline/ChurnPipelineFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/ChurnPipelineFactory.php -------------------------------------------------------------------------------- /src/Command/Pipeline/ChurnPipelineStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/ChurnPipelineStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/ChurnStages/ChurnCalculationStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/ChurnStages/ChurnCalculationStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/ChurnStages/ConfigurationStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/ChurnStages/ConfigurationStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/ChurnStages/CoverageStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/ChurnStages/CoverageStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/ChurnStages/OutputStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/ChurnStages/OutputStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/ChurnStages/ReportGenerationStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/ChurnStages/ReportGenerationStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/ChurnStages/ValidationStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/ChurnStages/ValidationStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/CognitiveStages/BaselineGenerationStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/CognitiveStages/BaselineGenerationStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/CognitiveStages/BaselineStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/CognitiveStages/BaselineStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/CognitiveStages/ConfigurationStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/CognitiveStages/ConfigurationStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/CognitiveStages/CoverageStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/CognitiveStages/CoverageStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/CognitiveStages/MetricsCollectionStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/CognitiveStages/MetricsCollectionStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/CognitiveStages/OutputStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/CognitiveStages/OutputStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/CognitiveStages/ReportGenerationStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/CognitiveStages/ReportGenerationStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/CognitiveStages/SortingStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/CognitiveStages/SortingStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/CognitiveStages/ValidationStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/CognitiveStages/ValidationStage.php -------------------------------------------------------------------------------- /src/Command/Pipeline/CommandPipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/CommandPipeline.php -------------------------------------------------------------------------------- /src/Command/Pipeline/CommandPipelineFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/CommandPipelineFactory.php -------------------------------------------------------------------------------- /src/Command/Pipeline/CommandPipelineInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/CommandPipelineInterface.php -------------------------------------------------------------------------------- /src/Command/Pipeline/ExecutionContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/ExecutionContext.php -------------------------------------------------------------------------------- /src/Command/Pipeline/PipelineStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Pipeline/PipelineStage.php -------------------------------------------------------------------------------- /src/Command/Presentation/ChurnTextRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Presentation/ChurnTextRenderer.php -------------------------------------------------------------------------------- /src/Command/Presentation/CognitiveMetricSummaryTextRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Presentation/CognitiveMetricSummaryTextRenderer.php -------------------------------------------------------------------------------- /src/Command/Presentation/CognitiveMetricTextRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Presentation/CognitiveMetricTextRenderer.php -------------------------------------------------------------------------------- /src/Command/Presentation/CognitiveMetricTextRendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Presentation/CognitiveMetricTextRendererInterface.php -------------------------------------------------------------------------------- /src/Command/Presentation/MetricFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Presentation/MetricFormatter.php -------------------------------------------------------------------------------- /src/Command/Presentation/TableHeaderBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Presentation/TableHeaderBuilder.php -------------------------------------------------------------------------------- /src/Command/Presentation/TableRowBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Presentation/TableRowBuilder.php -------------------------------------------------------------------------------- /src/Command/Result/OperationResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Command/Result/OperationResult.php -------------------------------------------------------------------------------- /src/Config/CacheConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Config/CacheConfig.php -------------------------------------------------------------------------------- /src/Config/CognitiveConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Config/CognitiveConfig.php -------------------------------------------------------------------------------- /src/Config/ConfigFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Config/ConfigFactory.php -------------------------------------------------------------------------------- /src/Config/ConfigLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Config/ConfigLoader.php -------------------------------------------------------------------------------- /src/Config/ConfigService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Config/ConfigService.php -------------------------------------------------------------------------------- /src/Config/MetricsConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Config/MetricsConfig.php -------------------------------------------------------------------------------- /src/Config/PerformanceConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/Config/PerformanceConfig.php -------------------------------------------------------------------------------- /src/PhpParser/AnnotationVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/PhpParser/AnnotationVisitor.php -------------------------------------------------------------------------------- /src/PhpParser/CognitiveMetricsVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/PhpParser/CognitiveMetricsVisitor.php -------------------------------------------------------------------------------- /src/PhpParser/CombinedMetricsVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/PhpParser/CombinedMetricsVisitor.php -------------------------------------------------------------------------------- /src/PhpParser/CyclomaticComplexityVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/PhpParser/CyclomaticComplexityVisitor.php -------------------------------------------------------------------------------- /src/PhpParser/HalsteadMetricsVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/src/PhpParser/HalsteadMetricsVisitor.php -------------------------------------------------------------------------------- /tests/Fixtures/Coverage/coverage-clover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/Coverage/coverage-clover.xml -------------------------------------------------------------------------------- /tests/Fixtures/Coverage/coverage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/Coverage/coverage.xml -------------------------------------------------------------------------------- /tests/Fixtures/Coverage/testcode-clover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/Coverage/testcode-clover.xml -------------------------------------------------------------------------------- /tests/Fixtures/Coverage/testcode-cobertura.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/Coverage/testcode-cobertura.xml -------------------------------------------------------------------------------- /tests/Fixtures/CustomReporters/ConfigAwareChurnTextReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/CustomReporters/ConfigAwareChurnTextReporter.php -------------------------------------------------------------------------------- /tests/Fixtures/CustomReporters/ConfigAwareTextReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/CustomReporters/ConfigAwareTextReporter.php -------------------------------------------------------------------------------- /tests/Fixtures/CustomReporters/CustomChurnTextReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/CustomReporters/CustomChurnTextReporter.php -------------------------------------------------------------------------------- /tests/Fixtures/CustomReporters/CustomTextReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/CustomReporters/CustomTextReporter.php -------------------------------------------------------------------------------- /tests/Fixtures/all-metrics-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/all-metrics-config.yml -------------------------------------------------------------------------------- /tests/Fixtures/config-aware-churn-reporter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/config-aware-churn-reporter-config.yml -------------------------------------------------------------------------------- /tests/Fixtures/config-aware-text-reporter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/config-aware-text-reporter-config.yml -------------------------------------------------------------------------------- /tests/Fixtures/config-exporter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/config-exporter-config.yml -------------------------------------------------------------------------------- /tests/Fixtures/config-with-exclude-patterns.yml: -------------------------------------------------------------------------------- 1 | cognitive: 2 | excludePatterns: 3 | - '(.*)::__construct' 4 | -------------------------------------------------------------------------------- /tests/Fixtures/config-with-one-metric.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/config-with-one-metric.yml -------------------------------------------------------------------------------- /tests/Fixtures/custom-churn-exporter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/custom-churn-exporter-config.yml -------------------------------------------------------------------------------- /tests/Fixtures/custom-churn-text-reporter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/custom-churn-text-reporter-config.yml -------------------------------------------------------------------------------- /tests/Fixtures/custom-cognitive-exporter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/custom-cognitive-exporter-config.yml -------------------------------------------------------------------------------- /tests/Fixtures/custom-exporters-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/custom-exporters-config.yml -------------------------------------------------------------------------------- /tests/Fixtures/custom-text-reporter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/custom-text-reporter-config.yml -------------------------------------------------------------------------------- /tests/Fixtures/cyclomatic-only-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/cyclomatic-only-config.yml -------------------------------------------------------------------------------- /tests/Fixtures/halstead-only-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/halstead-only-config.yml -------------------------------------------------------------------------------- /tests/Fixtures/invalid-custom-exporter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/invalid-custom-exporter-config.yml -------------------------------------------------------------------------------- /tests/Fixtures/minimal-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/minimal-config.yml -------------------------------------------------------------------------------- /tests/Fixtures/no-detailed-metrics-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/no-detailed-metrics-config.yml -------------------------------------------------------------------------------- /tests/Fixtures/single-table-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/single-table-config.yml -------------------------------------------------------------------------------- /tests/Fixtures/threshold-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Fixtures/threshold-config.yml -------------------------------------------------------------------------------- /tests/TestCode/FileWithTwoClasses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/TestCode/FileWithTwoClasses.php -------------------------------------------------------------------------------- /tests/TestCode/Paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/TestCode/Paginator.php -------------------------------------------------------------------------------- /tests/TestCode/WpDebugData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/TestCode/WpDebugData.php -------------------------------------------------------------------------------- /tests/TestCode2/TestClassForCounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/TestCode2/TestClassForCounts.php -------------------------------------------------------------------------------- /tests/TraitTestCode/ComplexTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/TraitTestCode/ComplexTrait.php -------------------------------------------------------------------------------- /tests/TraitTestCode/EmptyTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/TraitTestCode/EmptyTrait.php -------------------------------------------------------------------------------- /tests/TraitTestCode/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/TraitTestCode/TestTrait.php -------------------------------------------------------------------------------- /tests/Unit/Business/Churn/ChurnCalculatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Churn/ChurnCalculatorTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Churn/Report/AbstractReporterTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Churn/Report/AbstractReporterTestCase.php -------------------------------------------------------------------------------- /tests/Unit/Business/Churn/Report/ChurnReporterFactoryCustomTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Churn/Report/ChurnReporterFactoryCustomTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Churn/Report/CsvExportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Churn/Report/CsvExportTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Churn/Report/CsvReporterContent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Churn/Report/CsvReporterContent.csv -------------------------------------------------------------------------------- /tests/Unit/Business/Churn/Report/HtmlReporterContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Churn/Report/HtmlReporterContent.html -------------------------------------------------------------------------------- /tests/Unit/Business/Churn/Report/HtmlReporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Churn/Report/HtmlReporterTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Churn/Report/JsonReporterContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Churn/Report/JsonReporterContent.json -------------------------------------------------------------------------------- /tests/Unit/Business/Churn/Report/JsonReporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Churn/Report/JsonReporterTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Churn/Report/MarkdownReporterContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Churn/Report/MarkdownReporterContent.md -------------------------------------------------------------------------------- /tests/Unit/Business/Churn/Report/MarkdownReporterContentWithCoverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Churn/Report/MarkdownReporterContentWithCoverage.md -------------------------------------------------------------------------------- /tests/Unit/Business/Churn/Report/MarkdownReporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Churn/Report/MarkdownReporterTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Churn/Report/SvgTreemapReporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Churn/Report/SvgTreemapReporterTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Churn/Report/SvgTreemapReporterTest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Churn/Report/SvgTreemapReporterTest.svg -------------------------------------------------------------------------------- /tests/Unit/Business/Churn/Report/TestCognitiveConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Churn/Report/TestCognitiveConfig.php -------------------------------------------------------------------------------- /tests/Unit/Business/CodeCoverage/CloverReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/CodeCoverage/CloverReaderTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/CodeCoverage/CoberturaReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/CodeCoverage/CoberturaReaderTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/BaselineServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/BaselineServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/CognitiveMetricsCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/CognitiveMetricsCollectionTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/CognitiveMetricsCollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/CognitiveMetricsCollectorTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/CognitiveMetricsSorterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/CognitiveMetricsSorterTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/CognitiveMetricsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/CognitiveMetricsTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/DeltaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/DeltaTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/ParserTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/Report/CognitiveReporterFactoryCustomTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/Report/CognitiveReporterFactoryCustomTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/Report/CsvReporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/Report/CsvReporterTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/Report/HtmlReporterContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/Report/HtmlReporterContent.html -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/Report/HtmlReporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/Report/HtmlReporterTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/Report/JsonReporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/Report/JsonReporterTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/Report/MarkdownReporterContent_AllMetrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/Report/MarkdownReporterContent_AllMetrics.md -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/Report/MarkdownReporterContent_CyclomaticOnly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/Report/MarkdownReporterContent_CyclomaticOnly.md -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/Report/MarkdownReporterContent_HalsteadOnly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/Report/MarkdownReporterContent_HalsteadOnly.md -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/Report/MarkdownReporterContent_Minimal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/Report/MarkdownReporterContent_Minimal.md -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/Report/MarkdownReporterContent_NoDetailedMetrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/Report/MarkdownReporterContent_NoDetailedMetrics.md -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/Report/MarkdownReporterContent_SingleTable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/Report/MarkdownReporterContent_SingleTable.md -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/Report/MarkdownReporterContent_Threshold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/Report/MarkdownReporterContent_Threshold.md -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/Report/MarkdownReporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/Report/MarkdownReporterTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Cognitive/ScoreCalculatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Cognitive/ScoreCalculatorTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/CyclomaticComplexity/CyclomaticComplexityCalculatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/CyclomaticComplexity/CyclomaticComplexityCalculatorTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/DirectoryScannerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/DirectoryScannerTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Exporter/ExporterRegistryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Exporter/ExporterRegistryTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/Halstead/HalsteadMetricsCalculatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/Halstead/HalsteadMetricsCalculatorTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/MetricsFacadeCustomExportersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/MetricsFacadeCustomExportersTest.php -------------------------------------------------------------------------------- /tests/Unit/Business/MetricsFacadeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Business/MetricsFacadeTest.php -------------------------------------------------------------------------------- /tests/Unit/Cache/CacheItemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Cache/CacheItemTest.php -------------------------------------------------------------------------------- /tests/Unit/Cache/Exception/CacheExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Cache/Exception/CacheExceptionTest.php -------------------------------------------------------------------------------- /tests/Unit/Cache/FileCacheTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Cache/FileCacheTest.php -------------------------------------------------------------------------------- /tests/Unit/Command/ChurnCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Command/ChurnCommandTest.php -------------------------------------------------------------------------------- /tests/Unit/Command/ChurnSpecificationPatternTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Command/ChurnSpecificationPatternTest.php -------------------------------------------------------------------------------- /tests/Unit/Command/CognitiveMetricsCommandCoverageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Command/CognitiveMetricsCommandCoverageTest.php -------------------------------------------------------------------------------- /tests/Unit/Command/CognitiveMetricsCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Command/CognitiveMetricsCommandTest.php -------------------------------------------------------------------------------- /tests/Unit/Command/CognitiveMetricsSpecifications/CognitiveMetricsSpecificationPatternTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Command/CognitiveMetricsSpecifications/CognitiveMetricsSpecificationPatternTest.php -------------------------------------------------------------------------------- /tests/Unit/Command/OutputWithAllMetrics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Command/OutputWithAllMetrics.txt -------------------------------------------------------------------------------- /tests/Unit/Command/OutputWithCyclomaticOnly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Command/OutputWithCyclomaticOnly.txt -------------------------------------------------------------------------------- /tests/Unit/Command/OutputWithHalsteadOnly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Command/OutputWithHalsteadOnly.txt -------------------------------------------------------------------------------- /tests/Unit/Command/OutputWithMinimalConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Command/OutputWithMinimalConfig.txt -------------------------------------------------------------------------------- /tests/Unit/Command/OutputWithSingleTable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Command/OutputWithSingleTable.txt -------------------------------------------------------------------------------- /tests/Unit/Command/OutputWithThreshold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Command/OutputWithThreshold.txt -------------------------------------------------------------------------------- /tests/Unit/Command/OutputWithoutDetailedMetrics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Command/OutputWithoutDetailedMetrics.txt -------------------------------------------------------------------------------- /tests/Unit/Command/OutputWithoutOptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Command/OutputWithoutOptions.txt -------------------------------------------------------------------------------- /tests/Unit/Command/minimal-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Command/minimal-config.yml -------------------------------------------------------------------------------- /tests/Unit/Config/ConfigLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Config/ConfigLoaderTest.php -------------------------------------------------------------------------------- /tests/Unit/Config/CustomExportersConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/Config/CustomExportersConfigTest.php -------------------------------------------------------------------------------- /tests/Unit/PhpParser/AnnotationVisitorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/PhpParser/AnnotationVisitorTest.php -------------------------------------------------------------------------------- /tests/Unit/PhpParser/CognitiveMetricsVisitorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/PhpParser/CognitiveMetricsVisitorTest.php -------------------------------------------------------------------------------- /tests/Unit/PhpParser/CyclomaticComplexityVisitorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/PhpParser/CyclomaticComplexityVisitorTest.php -------------------------------------------------------------------------------- /tests/Unit/PhpParser/HalsteadMetricsVisitorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phauthentic/cognitive-code-analysis/HEAD/tests/Unit/PhpParser/HalsteadMetricsVisitorTest.php --------------------------------------------------------------------------------