Файловый менеджер - Редактировать - /home/pimjdymy/public_html/safrandsi/vendor/web-auth/webauthn-lib/src/Denormalizer/VerificationMethodANDCombinationsDenormalizer.php
Назад
<?php declare(strict_types=1); namespace Webauthn\Denormalizer; use Symfony\Component\Serializer\Normalizer\NormalizerAwareInterface; use Symfony\Component\Serializer\Normalizer\NormalizerAwareTrait; use Symfony\Component\Serializer\Normalizer\NormalizerInterface; use Webauthn\MetadataService\Statement\VerificationMethodANDCombinations; use Webauthn\MetadataService\Statement\VerificationMethodDescriptor; use function assert; final class VerificationMethodANDCombinationsDenormalizer implements NormalizerInterface, NormalizerAwareInterface { use NormalizerAwareTrait; /** * @return array<class-string, bool> */ public function getSupportedTypes(?string $format): array { return [ VerificationMethodANDCombinations::class => true, ]; } /** * @return array<VerificationMethodDescriptor> */ public function normalize(mixed $object, ?string $format = null, array $context = []): array { assert($object instanceof VerificationMethodANDCombinations); return array_map( fn ($verificationMethod) => $this->normalizer->normalize($verificationMethod, $format, $context), $object->verificationMethods ); } public function supportsNormalization(mixed $data, ?string $format = null, array $context = []): bool { return $data instanceof VerificationMethodANDCombinations; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Генерация страницы: 0.02 |
proxy
|
phpinfo
|
Настройка