gearsdigital/reporter-for-kirby

View on GitHub
lib/Report/ReportInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace KirbyReporter\Report;

use KirbyReporter\Model\FormData;

/**
 * @package KirbyReporter\Report
 * @author Steffen Giers <steffen.giers@gmail.com>
 */
interface ReportInterface
{
    public function report(FormData $reportData, ?string $templateData): ReportResponse;
}