ToArrayConverter   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 3
c 2
b 0
f 0
dl 0
loc 16
ccs 3
cts 3
cp 1
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A convert() 0 5 1
1
<?php
2
declare(strict_types=1);
3
4
namespace MarcinOrlowski\ResponseBuilder\Converters;
5
6
/**
7
 * Laravel API Response Builder
8
 *
9
 * @package   MarcinOrlowski\ResponseBuilder
10
 *
11
 * @author    Marcin Orlowski <mail (#) marcinOrlowski (.) com>
12
 * @copyright 2016-2021 Marcin Orlowski
13
 * @license   http://www.opensource.org/licenses/mit-license.php MIT
14
 * @link      https://github.com/MarcinOrlowski/laravel-api-response-builder
15
 */
16
17
use MarcinOrlowski\ResponseBuilder\Contracts\ConverterContract;
18
use MarcinOrlowski\ResponseBuilder\Validator;
19
20
/**
21
 * Generic object-to-array array converter.
22
 */
23
final class ToArrayConverter implements ConverterContract
24
{
25
    /**
26
     * Returns array representation of the object.
27
     *
28
     * @param object $obj    Object to be converted
29
     * @param array  $config Converter config array to be used for this object (based on exact class
30
     *                       name match or inheritance).
31 12
     *
32
     * @return array
33 12
     */
34
    public function convert(object $obj, /** @scrutinizer ignore-unused */ array $config): array
35 12
    {
36
        Validator::assertIsObject('obj', $obj);
37
38
        return $obj->toArray(null);
39
    }
40
}
41