Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
80.00% covered (warning)
80.00%
8 / 10
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
StringableCompositeValueObjectNormalizer
80.00% covered (warning)
80.00%
8 / 10
0.00% covered (danger)
0.00%
0 / 2
8.51
0.00% covered (danger)
0.00%
0 / 1
 supportsNormalization
88.89% covered (warning)
88.89%
8 / 9
0.00% covered (danger)
0.00%
0 / 1
7.07
 normalize
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2namespace Apie\Serializer\Normalizers;
3
4use Apie\Core\ContextConstants;
5use Apie\Core\Lists\ItemHashmap;
6use Apie\Core\Lists\ItemList;
7use Apie\Core\ValueObjects\CompositeValueObject;
8use Apie\Core\ValueObjects\Interfaces\ValueObjectInterface;
9use Apie\Serializer\Context\ApieSerializerContext;
10use Apie\Serializer\Interfaces\NormalizerInterface;
11use ReflectionClass;
12use Stringable;
13
14class StringableCompositeValueObjectNormalizer implements NormalizerInterface
15{
16    public function supportsNormalization(mixed $object, ApieSerializerContext $apieSerializerContext): bool
17    {
18        $context = $apieSerializerContext->getContext();
19        $displayAsString = ($context->hasContext(ContextConstants::GET_ALL_OBJECTS) && $context->hasContext(ContextConstants::CMS))
20            || $context->hasContext(ContextConstants::SHOW_PROFILE);
21        if ($displayAsString && $object instanceof Stringable) {
22            if ($object instanceof ValueObjectInterface) {
23                $refl = new ReflectionClass($object);
24                return in_array(CompositeValueObject::class, $refl->getTraitNames());
25            }
26            return $object instanceof ItemList || $object instanceof ItemHashmap;
27        }
28        return false;
29    }
30
31    /**
32     * @param Stringable&ValueObjectInterface $object
33     */
34    public function normalize(mixed $object, ApieSerializerContext $apieSerializerContext): string
35    {
36        return (string) $object;
37    }
38}