mirror of
https://github.com/Combodo/iTop.git
synced 2026-09-01 02:48:19 +02:00
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;
|
|
}
|