JsonCleanOutputProcessor   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 7
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
namespace ByJG\RestServer\OutputProcessor;
4
5
class JsonCleanOutputProcessor extends JsonOutputProcessor
6
{
7 1
    public function __construct()
8
    {
9 1
        $this->buildNull = false;
10 1
        $this->onlyString = false;
11 1
        parent::__construct();
12
    }
13
}
14