blob: c93bdda77336f0f02d0d39b3b66bdd9e0949a280 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
/* Icinga Web 2 | (c) 2015 Icinga Development Team | GPLv2+ */
namespace Icinga\Data;
interface SortRules
{
/**
* Return some sort rules
*
* @return array
*/
public function getSortRules();
}
|