Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
18 | 109 | public function __construct() |
|
19 | { |
||
20 | 109 | $this->handlers = array( |
|
21 | 109 | 'N' => new NullHandler(), |
|
22 | 109 | 'b' => new BooleanHandler(), |
|
23 | 109 | 'i' => new IntegerHandler(), |
|
24 | 109 | 'd' => new FloatHandler(), |
|
25 | 109 | 's' => new StringHandler(), |
|
26 | 109 | 'S' => new EscapedStringHandler(), |
|
27 | 109 | 'a' => new ArrayHandler($this), |
|
28 | ); |
||
57 |