. * * @package LibreNMS * @link http://librenms.org * @copyright 2019 Jozef Rebjak * @author Jozef Rebjak */ namespace LibreNMS\Interfaces\Polling\Sensors; interface WirelessSinrPolling { /** * Poll wireless SINR in dB * The returned array should be sensor_id => value pairs * * @param array $sensors Array of sensors needed to be polled * @return array of polled data */ public function pollWirelessSinr(array $sensors); }