25 lines
No EOL
623 B
PHP
25 lines
No EOL
623 B
PHP
<?php
|
|
|
|
namespace DigiComp\HetznerDnsApi\Runtime\Normalizer;
|
|
|
|
use Jane\Component\JsonSchemaRuntime\Reference;
|
|
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
|
|
class ReferenceNormalizer implements NormalizerInterface
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function normalize($object, $format = null, array $context = [])
|
|
{
|
|
$ref = [];
|
|
$ref['$ref'] = (string) $object->getReferenceUri();
|
|
return $ref;
|
|
}
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function supportsNormalization($data, $format = null) : bool
|
|
{
|
|
return $data instanceof Reference;
|
|
}
|
|
} |