mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
22 lines
294 B
PHP
22 lines
294 B
PHP
<?php
|
|
/**
|
|
* @author Stephen "TheCodeAssassin" Hoogendijk
|
|
*/
|
|
|
|
namespace InfluxDB\Driver;
|
|
|
|
use InfluxDB\ResultSet;
|
|
|
|
/**
|
|
* Interface QueryDriverInterface
|
|
*
|
|
* @package InfluxDB\Driver
|
|
*/
|
|
interface QueryDriverInterface
|
|
{
|
|
|
|
/**
|
|
* @return ResultSet
|
|
*/
|
|
public function query();
|
|
} |