Introduce interface SortRules

refs #6644
This commit is contained in:
Johannes Meyer 2015-07-28 11:40:27 +02:00
parent ce87b7f036
commit cdc2182430
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
namespace Icinga\Data;
interface SortRules
{
/**
* Return some sort rules
*
* @return array
*/
public function getSortRules();
}