mirror of
https://github.com/Combodo/iTop.git
synced 2026-09-02 19:38:20 +02:00
--------- Co-authored-by: Molkobain <lajarige.guillaume@free.fr> Co-authored-by: Benjamin DALSASS <benjamin.dalsass@combodo.com>
14 lines
262 B
PHP
14 lines
262 B
PHP
<?php
|
|
|
|
use Combodo\iTop\Application\UI\Base\Common\Metadata\Grouping;
|
|
|
|
/**
|
|
* Allows to provide grouping information to classes that implement this interface.
|
|
* @api
|
|
* @since 3.3.0
|
|
*/
|
|
interface iGroupingProvider
|
|
{
|
|
public function GetGrouping(): ?Grouping;
|
|
}
|