rich-id/terms-module

View on GitHub
src/Domain/Event/TermsPublicationEventInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace RichId\TermsModuleBundle\Domain\Event;

use RichId\TermsModuleBundle\Domain\Entity\Terms;

interface TermsPublicationEventInterface
{
    public function getTerms(): Terms;
}