bmitch/churn-php

View on GitHub
src/Process/CyclomaticComplexityInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Churn\Process;

/**
 * @internal
 */
interface CyclomaticComplexityInterface extends ProcessInterface
{
    /**
     * Returns the cyclomatic complexity of a file.
     */
    public function getCyclomaticComplexity(): int;
}