mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-30 11:30:11 +02:00
the Monitoring/View code was completly dropped in favor of the DataView implementations, as new Backends otherwise would require to implement two seperate query logics refs #3801
16 lines
230 B
PHP
16 lines
230 B
PHP
<?php
|
|
|
|
// TODO: create interface instead of abstract class
|
|
namespace Icinga\Data;
|
|
|
|
interface DatasourceInterface
|
|
{
|
|
/**
|
|
* Instantiate a Query object
|
|
*
|
|
* @return BaseQuery
|
|
*/
|
|
public function select();
|
|
|
|
}
|