Conditions | 3 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
45 | public function terminate(ResultCollection $collection, ResultCollection $groupedResults) |
||
46 | { |
||
47 | // use pretty print for readability if according php version given |
||
48 | if ($this->prettyPrint && version_compare(PHP_VERSION, '5.4.0') >= 0) { |
||
49 | return json_encode($collection->asArray(), JSON_PRETTY_PRINT); |
||
50 | } else { |
||
51 | return json_encode($collection->asArray()); |
||
52 | } |
||
53 | } |
||
54 | |||
65 |