mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 08:02:41 +02:00
Fix coding style part 2
This commit is contained in:
@@ -1,11 +1,13 @@
|
||||
<?php
|
||||
|
||||
$canopy_type = snmp_get($device,"boxDeviceType.0", "-Oqv", "WHISP-BOX-MIBV2-MIB");
|
||||
$canopy_type = snmp_get($device, 'boxDeviceType.0', '-Oqv', 'WHISP-BOX-MIBV2-MIB');
|
||||
|
||||
if (stristr($canopy_type,"MIMO OFDM")) {
|
||||
if (stristr($canopy_type, 'MIMO OFDM')) {
|
||||
$hardware = 'PMP 450';
|
||||
} elseif (stristr($canopy_type,"OFDM")) {
|
||||
}
|
||||
else if (stristr($canopy_type, 'OFDM')) {
|
||||
$hardware = 'PMP 430';
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
$hardware = 'PMP 100';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user