Skip to content

Commit 3f3ca07

Browse files
authored
Merge pull request #202 from murrant/analysis-GPWy2O
Apply fixes from StyleCI
2 parents 1a421e4 + ee91d87 commit 3f3ca07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LibreNMS/Cache/Port.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public function getIdFromIfName(string $ifName, \App\Models\Device|int|null $dev
8282
$this->ifNameMaps[$device_id] = \App\Models\Port::where('device_id', $device_id)->pluck('port_id', 'ifName')->all();
8383
}
8484

85-
if(isset($this->ifNameMaps[$device_id][$ifName])) {
85+
if (isset($this->ifNameMaps[$device_id][$ifName])) {
8686
return (int) $this->ifNameMaps[$device_id][$ifName];
8787
}
8888

0 commit comments

Comments
 (0)