mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-09 22:44:48 +00:00
23 lines
499 B
PHP
23 lines
499 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* @method static string encode(mixed ...$numbers)
|
|
* @method static array decode(string $hash)
|
|
* @method static string encodeHex(string $str)
|
|
* @method static string decodeHex(string $hash)
|
|
* @method static \Hashids\Hashids connection(string|null $name = null)
|
|
*/
|
|
class Hashids extends Facade
|
|
{
|
|
protected static function getFacadeAccessor(): string
|
|
{
|
|
return 'hashids';
|
|
}
|
|
}
|