Completed
Push — master ( 62f786...e41aa3 )
by Andrii
02:37
created

JsonHandler::renderType()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
ccs 0
cts 2
cp 0
rs 10
cc 1
eloc 2
nc 1
nop 1
crap 2
1
<?php
2
3
/*
4
 * Automation tool mixed with code generator for easier continuous development
5
 *
6
 * @link      https://github.com/hiqdev/hidev
7
 * @package   hidev
8
 * @license   BSD-3-Clause
9
 * @copyright Copyright (c) 2015-2016, HiQDev (http://hiqdev.com/)
10
 */
11
12
namespace hidev\handlers;
13
14
use yii\helpers\Json;
15
16
/**
17
 * Handler for JSON files.
18
 */
19
class JsonHandler extends TypeHandler
20
{
21
    /**
22
     * {@inheritdoc}
23
     */
24
    public function renderType($data)
25
    {
26
        return Json::encode($data, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT) . "\n";
27
    }
28
29
    /**
30
     * {@inheritdoc}
31
     */
32
    public function parse($json)
33
    {
34
        return $json ? Json::decode($json) : [];
35
    }
36
}
37