mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
3bf5a71802
Co-authored-by: Matthew Penner <matthew@pterodactyl.io>
27 lines
723 B
PHP
27 lines
723 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Providers;
|
|
|
|
use Pterodactyl\Extensions\Hashids;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Pterodactyl\Contracts\Extensions\HashidsInterface;
|
|
|
|
class HashidsServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register the ability to use Hashids.
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->singleton(HashidsInterface::class, function () {
|
|
return new Hashids(
|
|
config('hashids.salt', ''),
|
|
config('hashids.length', 0),
|
|
config('hashids.alphabet', 'abcdefghijkmlnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890')
|
|
);
|
|
});
|
|
|
|
$this->app->alias(HashidsInterface::class, 'hashids');
|
|
}
|
|
}
|