Completed
Push — master ( 03c10c...407786 )
by Supun
10s
created

Json   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 46
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 46
rs 10
c 0
b 0
f 0
wmc 5

4 Methods

Rating   Name   Duplication   Size   Complexity  
A toObject() 0 4 1
A validate() 0 8 2
A toArray() 0 3 1
A __construct() 0 3 1
1
<?php
2
3
namespace lifeeka\jsql\Helpers;
4
5
/**
6
 * Class MysqlExtractor.
7
 */
8
class Json
9
{
10
    public $json_text;
11
    public $json_array;
12
    public $main_table_name = "main";
13
14
    /**
15
     * Json constructor.
16
     *
17
     * @param string $json
18
     */
19
    public function __construct(String $json)
20
    {
21
        $this->json_text = $json;
22
    }
23
24
    /**
25
     * @return mixed
26
     */
27
    public function toArray()
28
    {
29
        return json_decode($this->json_text, true);
30
    }
31
32
    /**
33
     * @return mixed
34
     */
35
    public function toObject()
36
    {
37
        $json_object = $this->validate(json_decode($this->json_text));
38
        return $json_object;
39
    }
40
41
42
    /**
43
     * @param $json
44
     * @return object
45
     */
46
    function validate($json)
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
47
    {
48
        if(is_array($json)){
49
            return (object)[
50
                $this->main_table_name=>$json
51
            ];
52
        }
53
        return $json;
54
55
    }
56
}
57