bmitch/churn-php

View on GitHub
src/Event/Hook/BeforeAnalysisHook.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Churn\Event\Hook;

use Churn\Event\Event\BeforeAnalysis;

interface BeforeAnalysisHook
{
    /**
     * @param BeforeAnalysis $event The event triggered when the analysis starts.
     */
    public static function beforeAnalysis(BeforeAnalysis $event): void;
}