2017-09-10 06:55:21 +02:00
|
|
|
<?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(
|
2022-11-25 21:29:04 +01:00
|
|
|
config('hashids.salt', ''),
|
|
|
|
config('hashids.length', 0),
|
|
|
|
config('hashids.alphabet', 'abcdefghijkmlnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890')
|
2017-09-10 06:55:21 +02:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->app->alias(HashidsInterface::class, 'hashids');
|
|
|
|
}
|
|
|
|
}
|