Files

33 lines
663 B
PHP
Raw Permalink Normal View History

2018-02-05 07:39:13 -06:00
<?php
/**
* Created by IntelliJ IDEA.
* User: murrant
* Date: 12/6/17
* Time: 8:48 AM
*/
namespace LibreNMS\Interfaces\Discovery;
use LibreNMS\OS;
interface DiscoveryItem
{
/**
* Does this item represent an actual item or did it fail validation
*
* @return bool
*/
public function isValid();
/**
* Generate an instance of this class from yaml data.
* The data is processed and any snmp data is filled in
*
* @param OS $os
* @param int $index the index of the current entry
* @param array $data
* @return static
*/
public static function fromYaml(OS $os, $index, array $data);
}