Файловый менеджер - Редактировать - /home/pimjdymy/public_html/safrandsi/vendor/web-auth/webauthn-lib/src/PublicKeyCredentialParameters.php
Назад
<?php declare(strict_types=1); namespace Webauthn; use JsonSerializable; use Webauthn\Exception\InvalidDataException; use function array_key_exists; use const JSON_THROW_ON_ERROR; class PublicKeyCredentialParameters implements JsonSerializable { /** * @private */ public function __construct( public readonly string $type, public readonly int $alg ) { } public static function create(string $type, int $alg): self { return new self($type, $alg); } public static function createPk(int $alg): self { return self::create(PublicKeyCredentialDescriptor::CREDENTIAL_TYPE_PUBLIC_KEY, $alg); } /** * @deprecated since 4.7.0. Please use the property directly. * @infection-ignore-all */ public function getType(): string { return $this->type; } /** * @deprecated since 4.7.0. Please use the property directly. * @infection-ignore-all */ public function getAlg(): int { return $this->alg; } /** * @deprecated since 4.8.0. Please use {Webauthn\Denormalizer\WebauthnSerializerFactory} for converting the object. * @infection-ignore-all */ public static function createFromString(string $data): self { $data = json_decode($data, true, flags: JSON_THROW_ON_ERROR); return self::createFromArray($data); } /** * @param mixed[] $json * @deprecated since 4.8.0. Please use {Webauthn\Denormalizer\WebauthnSerializerFactory} for converting the object. * @infection-ignore-all */ public static function createFromArray(array $json): self { array_key_exists('type', $json) || throw InvalidDataException::create( $json, 'Invalid input. "type" is missing.' ); array_key_exists('alg', $json) || throw InvalidDataException::create( $json, 'Invalid input. "alg" is missing.' ); return self::create($json['type'], $json['alg']); } /** * @return mixed[] */ public function jsonSerialize(): array { trigger_deprecation( 'web-auth/webauthn-bundle', '4.9.0', 'The "%s" method is deprecated and will be removed in 5.0. Please use the serializer instead.', __METHOD__ ); return [ 'type' => $this->type, 'alg' => $this->alg, ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка