*/ class MIB { /** * Instance for the SNMP object */ private $_snmp = null; /** * Set the SNMP instance * * @param NasBundle\SNMP\SNMP $snmp the SNMP instance * @return NasBundle\SNMP\MIB An instance of this class for fluent interfaces */ public function setSNMP( $snmp ) { $this->_snmp = $snmp; } /** * Get the SNMP instance * * @return NasBundle\SNMP\SNMP Instance of the SNMP object */ public function getSNMP() { return $this->_snmp; } }