mirror of
https://github.com/pterodactyl/panel.git
synced 2025-01-31 19:01:35 +01:00
cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
16 lines
377 B
PHP
16 lines
377 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Contracts\Extensions;
|
|
|
|
use Hashids\HashidsInterface as VendorHashidsInterface;
|
|
|
|
interface HashidsInterface extends VendorHashidsInterface
|
|
{
|
|
/**
|
|
* Decode an encoded hashid and return the first result.
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
*/
|
|
public function decodeFirst(string $encoded, string $default = null): mixed;
|
|
}
|