. * * @link https://www.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|int */ public function getCompositeKey(); }