rich-id/terms-module

View on GitHub
src/Domain/Port/LoggerInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace RichId\TermsModuleBundle\Domain\Port;

use RichId\TermsModuleBundle\Domain\Entity\TermsSubjectInterface;

interface LoggerInterface
{
    public function logTermsSigned(string $termsSlug, TermsSubjectInterface $subject, ?bool $accepted): void;
}