관리-도구
편집 파일: JWSNormalizer.php
<?php declare(strict_types=1); /* * The MIT License (MIT) * * Copyright (c) 2014-2020 Spomky-Labs * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file for details. */ namespace Jose\Bundle\JoseFramework\Normalizer; use Jose\Component\Signature\JWS; use Jose\Component\Signature\Serializer\JWSSerializerManager; use Symfony\Component\Serializer\Normalizer\DenormalizerInterface; use Symfony\Component\Serializer\Normalizer\NormalizerInterface; final class JWSNormalizer implements NormalizerInterface, DenormalizerInterface { public function supportsNormalization($data, $format = null) { return $data instanceof JWS && $this->componentInstalled(); } public function supportsDenormalization($data, $type, $format = null) { return JWS::class === $type && $this->componentInstalled(); } public function normalize($object, $format = null, array $context = []) { return $object; } /** * @param mixed $data Data to restore * @param string $type The expected class to instantiate * @param string $format Format the given data was extracted from * @param array $context Options available to the denormalizer * * @return array|object */ public function denormalize($data, $type, $format = null, array $context = []) { return $data; } /** * Check if encryption component is installed. */ private function componentInstalled(): bool { return class_exists(JWSSerializerManager::class); } }