GenTux\Jwt\Support\ServiceProvider::register PHP Method

register() public method

Register the service provider.
public register ( ) : void
return void
    public function register()
    {
        $this->app->bind(JwtDriverInterface::class, function ($app) {
            return $app->make(FirebaseDriver::class);
        });
    }