<?php

namespace Symfony\Component\Serializer\Normalizer;

interface ContextAwareNormalizerInterface extends NormalizerInterface
{
    /**
     * @param mixed $data
     * @param string|null $format
     * @param array<mixed> $context
     * @return bool
     */
    public function supportsNormalization($data, $format = null, array $context = []);
}
