Skip to content

Commit f8c1731

Browse files
authored
fix: sqids salting
1 parent 7f5f16e commit f8c1731

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/Sqids.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,12 @@ public function encode(array | int $numbers): string
2525

2626
public function decode(string $id): array
2727
{
28-
$output = parent::decode($id);
29-
3028
if ($salt = $this->getSalt()) {
3129
srand($salt);
3230
$this->alphabet = str_shuffle($this->getAlphabet());
3331
}
3432

35-
return $output;
33+
return parent::decode($id);
3634
}
3735

3836
public static function make(array $parameters = []): static

0 commit comments

Comments
 (0)