. * * @link http://librenms.org * * @copyright 2021 Janno Schouwenburg * @author Janno Schouwenburg */ namespace LibreNMS\Interfaces\Polling\Sensors; interface WirelessCellPolling { /** * Poll wireless Cellular Cell. Type is cell. * 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 pollWirelessCell(array $sensors); }