Файловый менеджер - Редактировать - /home/pimjdymy/public_html/safrandsi/vendor/web-auth/webauthn-lib/src/Event/AuthenticatorAssertionResponseValidationSucceededEvent.php
Назад
<?php declare(strict_types=1); namespace Webauthn\Event; use Psr\Http\Message\ServerRequestInterface; use Webauthn\AuthenticatorAssertionResponse; use Webauthn\PublicKeyCredentialRequestOptions; use Webauthn\PublicKeyCredentialSource; use function sprintf; class AuthenticatorAssertionResponseValidationSucceededEvent { public function __construct( public readonly null|string $credentialId, public readonly AuthenticatorAssertionResponse $authenticatorAssertionResponse, public readonly PublicKeyCredentialRequestOptions $publicKeyCredentialRequestOptions, public readonly ServerRequestInterface|string $host, public readonly ?string $userHandle, public readonly PublicKeyCredentialSource $publicKeyCredentialSource ) { if ($host instanceof ServerRequestInterface) { trigger_deprecation( 'web-auth/webauthn-lib', '4.5.0', sprintf( 'Passing a %s to the class "%s" is deprecated since 4.5.0 and will be removed in 5.0.0. Please inject the host as a string instead.', ServerRequestInterface::class, self::class ) ); } if ($this->credentialId !== null) { trigger_deprecation( 'web-auth/webauthn-lib', '4.6.0', 'The argument "$credentialId" is deprecated since 4.6.0 and will be removed in 5.0.0. Please set null instead.' ); } } /** * @deprecated since 4.8.0. Will be removed in 5.0.0. Please use the property instead. */ public function getCredentialId(): string { return $this->publicKeyCredentialSource->publicKeyCredentialId; } /** * @deprecated since 4.8.0. Will be removed in 5.0.0. Please use the property instead. */ public function getAuthenticatorAssertionResponse(): AuthenticatorAssertionResponse { return $this->authenticatorAssertionResponse; } /** * @deprecated since 4.8.0. Will be removed in 5.0.0. Please use the property instead. */ public function getPublicKeyCredentialRequestOptions(): PublicKeyCredentialRequestOptions { return $this->publicKeyCredentialRequestOptions; } /** * @deprecated since 4.5.0 and will be removed in 5.0.0. Please use the `host` property instead * @infection-ignore-all */ public function getRequest(): ServerRequestInterface|string { return $this->host; } /** * @deprecated since 4.8.0. Will be removed in 5.0.0. Please use the property instead. */ public function getUserHandle(): ?string { return $this->userHandle; } /** * @deprecated since 4.8.0. Will be removed in 5.0.0. Please use the property instead. */ public function getPublicKeyCredentialSource(): PublicKeyCredentialSource { return $this->publicKeyCredentialSource; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка