<?php  namespace Symfony\Component\Serializer\Context\Normalizer; use Symfony\Component\Serializer\Context\ContextBuilderInterface; use Symfony\Component\Serializer\Context\ContextBuilderTrait; use Symfony\Component\Serializer\Normalizer\FormErrorNormalizer;  final class FormErrorNormalizerContextBuilder implements ContextBuilderInterface { use ContextBuilderTrait;  public function withTitle(?string $title): static { return $this->with(FormErrorNormalizer::TITLE, $title); }  public function withType(?string $type): static { return $this->with(FormErrorNormalizer::TYPE, $type); }  public function withStatusCode(?int $statusCode): static { return $this->with(FormErrorNormalizer::CODE, $statusCode); } }