jeyroik/df-applications

View on GitHub
src/interfaces/applications/operations/IHaveOperations.php

Summary

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

use extas\interfaces\parameters\IParametredCollection;

interface IHaveOperations
{
    public const FIELD__OPERATIONS = 'operations';

    public function getOperations(): array;
    public function buildOperations(): IParametredCollection;
}