. * * @package LibreNMS * @link http://librenms.org * @copyright 2019 Tony Murray * @author Tony Murray */ namespace LibreNMS\Interfaces\Models; interface Keyable { /** * Get a string that can identify a unique instance of this model * @return string */ public function getCompositeKey(); }