Skip to content

Commit 10b9506

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 08fe255 + 0d4cc27 commit 10b9506

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
# Laravel wrapper for Sqids
55

6-
[![Latest Version on Packagist](https://img.shields.io/packagist/v/guavaCZ/sqids-for-laravel.svg?style=flat-square)](https://packagist.org/packages/guava/sqids-for-laravel)
7-
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/guavaCZ/sqids-for-laravel/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/guava/sqids-for-laravel/actions?query=workflow%3Arun-tests+branch%3Amain)
8-
[![Total Downloads](https://img.shields.io/packagist/dt/guavaCZ/sqids-for-laravel.svg?style=flat-square)](https://packagist.org/packages/guava/sqids-for-laravel)
6+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/guava/sqids-for-laravel.svg?style=flat-square)](https://packagist.org/packages/guava/sqids-for-laravel)
7+
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/guavaCZ/sqids-for-laravel/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/guavaCZ/sqids-for-laravel/actions?query=workflow%3Arun-tests+branch%3Amain)
8+
[![Total Downloads](https://img.shields.io/packagist/dt/guava/sqids-for-laravel.svg?style=flat-square)](https://packagist.org/packages/guava/sqids-for-laravel)
99

1010
Laravel Wrapper for [sqids.org](https://sqids.org) PHP library.
1111

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)