-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstraintViolationListNormalizer.php
43 lines (35 loc) · 1.15 KB
/
ConstraintViolationListNormalizer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace ApiPlatform\Serializer;
use Symfony\Component\Serializer\NameConverter\NameConverterInterface;
/**
* Converts {@see \Symfony\Component\Validator\ConstraintViolationListInterface} the API Problem spec (RFC 7807).
*
* @see https://tools.ietf.org/html/rfc7807
*
* @author Kévin Dunglas <[email protected]>
*/
final class ConstraintViolationListNormalizer extends AbstractConstraintViolationListNormalizer
{
public const FORMAT = 'json';
public function __construct(?array $serializePayloadFields = null, ?NameConverterInterface $nameConverter = null)
{
parent::__construct($serializePayloadFields, $nameConverter);
}
/**
* {@inheritdoc}
*/
public function normalize(mixed $object, ?string $format = null, array $context = []): array
{
[$messages, $violations] = $this->getMessagesAndViolations($object);
return $violations;
}
}