Completed
Push — master ( 689084...daf696 )
by Joao
10s
created

JsonCleanHandler::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 6
rs 9.4285
c 1
b 0
f 0
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
3
namespace ByJG\RestServer\HandleOutput;
4
5
class JsonCleanHandler extends JsonHandler
6
{
7
    public function __construct()
8
    {
9
        $this->option('build-null', false);
10
        $this->option('only-string', false);
11
        parent::__construct();
12
    }
13
}
14