Skip to content

Commit 8fe6ec5

Browse files
authored
fix: OidStripper walk can return int keys as well (#93)
1 parent 5466102 commit 8fe6ec5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Helpers/OidStripper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public static function batchStripParent(array $leafOidDataResponses): array
6666
return $result;
6767
}
6868

69-
/** @return array<string, mixed> */
69+
/** @return array<mixed> */
7070
public static function walk(SnmpClient $snmpClient, string $oid, int $maxRepetitions = 20): array
7171
{
7272
return self::batchStripParentPrefix($snmpClient, [Request::walk($oid, $maxRepetitions)])[0];

0 commit comments

Comments
 (0)