ApiResponseFormatter::format()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 5
nc 1
nop 1
dl 0
loc 9
rs 10
c 0
b 0
f 0
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