1
0
mirror of synced 2024-11-24 22:06:06 +03:00
service-bundle/Response/ErrorJsonResponseFactory.php
Кривич Сергей 897df39d96 Update code base
2022-07-20 14:38:42 +03:00

25 lines
658 B
PHP

<?php
namespace RetailCrm\ServiceBundle\Response;
use RetailCrm\ServiceBundle\Models\Error;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Serializer\SerializerInterface;
class ErrorJsonResponseFactory
{
public function __construct(private SerializerInterface $serializer)
{
}
public function create(Error $error, int $statusCode = Response::HTTP_BAD_REQUEST, array $headers = []): Response
{
return JsonResponse::fromJsonString(
$this->serializer->serialize($error, 'json'),
$statusCode,
$headers
);
}
}