ApiResponseFormatter   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 6
c 0
b 0
f 0
dl 0
loc 15
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A format() 0 9 1
A __construct() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace App\Http;
6
7
use Psr\Http\Message\ResponseInterface;
8
use Yiisoft\DataResponse\DataResponse;
9
use Yiisoft\DataResponse\DataResponseFormatterInterface;
10
use Yiisoft\DataResponse\Formatter\JsonDataResponseFormatter;
11
12
final class ApiResponseFormatter implements DataResponseFormatterInterface
13
{
14
    public function __construct(private ApiResponseDataFactory $apiResponseDataFactory, private JsonDataResponseFormatter $jsonDataResponseFormatter)
15
    {
16
    }
17
18
    public function format(DataResponse $dataResponse): ResponseInterface
19
    {
20
        $response = $dataResponse->withData(
21
            $this->apiResponseDataFactory
22
                ->createFromResponse($dataResponse)
23
                ->toArray(),
24
        );
25
26
        return $this->jsonDataResponseFormatter->format($response);
27
    }
28
}
29