Файловый менеджер - Редактировать - /home/pimjdymy/public_html/safrandsi/vendor/web-auth/webauthn-lib/src/Denormalizer/ExtensionDescriptorDenormalizer.php
Назад
<?php declare(strict_types=1); namespace Webauthn\Denormalizer; use Symfony\Component\Serializer\Normalizer\DenormalizerAwareInterface; use Symfony\Component\Serializer\Normalizer\DenormalizerAwareTrait; use Symfony\Component\Serializer\Normalizer\DenormalizerInterface; use Webauthn\MetadataService\Statement\ExtensionDescriptor; use function array_key_exists; /** * @final */ class ExtensionDescriptorDenormalizer implements DenormalizerInterface, DenormalizerAwareInterface { use DenormalizerAwareTrait; private const ALREADY_CALLED = 'EXTENSION_DESCRIPTOR_PREPROCESS_ALREADY_CALLED'; public function denormalize(mixed $data, string $type, ?string $format = null, array $context = []): mixed { if (array_key_exists('fail_if_unknown', $data)) { $data['failIfUnknown'] = $data['fail_if_unknown']; unset($data['fail_if_unknown']); } $context[self::ALREADY_CALLED] = true; return $this->denormalizer->denormalize($data, $type, $format, $context); } public function supportsDenormalization( mixed $data, string $type, ?string $format = null, array $context = [] ): bool { if ($context[self::ALREADY_CALLED] ?? false) { return false; } return $type === ExtensionDescriptor::class; } /** * @return array<class-string, bool> */ public function getSupportedTypes(?string $format): array { return [ ExtensionDescriptor::class => false, ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка