jeyroik/df-applications

View on GitHub
src/interfaces/applications/events/IHaveEvents.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace deflou\interfaces\applications\events;

use extas\interfaces\parameters\IParametredCollection;

interface IHaveEvents
{
    public const FIELD__EVENTS = 'events';

    public function getEvents(): array;
    public function buildEvents(): IParametredCollection;
}