Completed
Push — master ( 7aa7c6...963679 )
by Matt
14s
created

JsonDecoder   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 44
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 90%

Importance

Changes 0
Metric Value
dl 0
loc 44
ccs 9
cts 10
cp 0.9
rs 10
c 0
b 0
f 0
wmc 3
lcom 1
cbo 1

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
A decode() 0 10 2
1
<?php
2
3
namespace League\JsonReference\Decoder;
4
5
use League\JsonReference\DecoderInterface;
6
use League\JsonReference\DecodingException;
7
8
class JsonDecoder implements DecoderInterface
9
{
10
    /**
11
     * @var bool
12
     */
13
    private $assoc;
14
15
    /**
16
     * @var int
17
     */
18
    private $depth;
19
20
    /**
21
     * @var int
22
     */
23
    private $options;
24
25
    /**
26
     * @param bool $assoc
27
     * @param int  $depth
28
     * @param int  $options
29
     */
30 90
    public function __construct($assoc = false, $depth = 512, $options = JSON_BIGINT_AS_STRING)
31
    {
32 90
        $this->assoc   = $assoc;
33 90
        $this->depth   = $depth;
34 90
        $this->options = $options;
35 90
    }
36
37
    
38
    /**
39
     * {@inheritdoc}
40
     */
41 52
    public function decode($schema)
42
    {
43 52
        $data = json_decode($schema, $this->assoc, $this->depth, $this->options);
44
45 52
        if (json_last_error() !== JSON_ERROR_NONE) {
46
            throw new DecodingException(sprintf('Invalid JSON: %s', json_last_error_msg()));
47
        }
48
49 52
        return $data;
50
    }
51
}
52