Файловый менеджер - Редактировать - /home/lmsyaran/public_html/joomla5/libraries/vendor/web-auth/webauthn-lib/src/Event/AuthenticatorAttestationResponseValidationSucceededEvent.php
Назад
<?php declare(strict_types=1); namespace Webauthn\Event; use Psr\Http\Message\ServerRequestInterface; use Webauthn\AuthenticatorAttestationResponse; use Webauthn\PublicKeyCredentialCreationOptions; use Webauthn\PublicKeyCredentialSource; class AuthenticatorAttestationResponseValidationSucceededEvent { public function __construct( private readonly AuthenticatorAttestationResponse $authenticatorAttestationResponse, private readonly PublicKeyCredentialCreationOptions $publicKeyCredentialCreationOptions, public readonly ServerRequestInterface|string $host, private 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 ) ); } } public function getAuthenticatorAttestationResponse(): AuthenticatorAttestationResponse { return $this->authenticatorAttestationResponse; } public function getPublicKeyCredentialCreationOptions(): PublicKeyCredentialCreationOptions { return $this->publicKeyCredentialCreationOptions; } /** * @deprecated since 4.5.0 and will be removed in 5.0.0. Please use the `host` property instead */ public function getRequest(): ServerRequestInterface|string { return $this->host; } public function getPublicKeyCredentialSource(): PublicKeyCredentialSource { return $this->publicKeyCredentialSource; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка