| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php namespace rtens\domin\delivery\web\renderers; |
||
| 21 | public function render($value) { |
||
| 22 | header('Content-Encoding: none;'); |
||
| 23 | header('X-Accel-Buffering: no'); |
||
| 24 | ob_end_flush(); |
||
| 25 | |||
| 26 | $value->surroundWith("<pre>", "</pre>"); |
||
| 27 | $value->setPrinter(function ($string) { |
||
| 28 | echo $string; |
||
| 29 | flush(); |
||
| 30 | ob_flush(); |
||
| 31 | }); |
||
| 32 | return $value; |
||
| 33 | } |
||
| 34 | |||
| 58 | } |