Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class Mysql |
||
9 | { |
||
10 | public $mysql_text; |
||
11 | public $mysql_array; |
||
12 | |||
13 | /** |
||
14 | * Json constructor. |
||
15 | * |
||
16 | * @param string $mysql |
||
17 | */ |
||
18 | public function __construct(String $mysql) |
||
19 | { |
||
20 | $this->mysql_text = $mysql; |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @return mixed |
||
25 | */ |
||
26 | public function toArray() |
||
29 | } |
||
30 | } |
||
31 |