Passed
Pull Request — master (#188)
by Wilmer
02:48
created

ApiResponseFormatter::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 2
dl 0
loc 2
ccs 1
cts 1
cp 1
crap 1
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 2
    public function __construct(private ApiResponseDataFactory $apiResponseDataFactory, private JsonDataResponseFormatter $jsonDataResponseFormatter)
15
    {
16 2
    }
17
18 2
    public function format(DataResponse $dataResponse): ResponseInterface
19
    {
20 2
        $response = $dataResponse->withData(
21 2
            $this->apiResponseDataFactory
22 2
                ->createFromResponse($dataResponse)
23 2
                ->toArray(),
24 2
        );
25
26 2
        return $this->jsonDataResponseFormatter->format($response);
27
    }
28
}
29