icingaweb2/library/Icinga/Data/DatasourceInterface.php
Jannis Moßhammer 6095a71a8d CS Fixes
refs #4868
2013-10-17 21:40:02 +02:00

15 lines
229 B
PHP

<?php
// TODO: create interface instead of abstract class
namespace Icinga\Data;
interface DatasourceInterface
{
/**
* Instantiate a Query object
*
* @return BaseQuery
*/
public function select();
}