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