| 1 | <?php |
||
| 14 | class LogResponse extends JsonResponse |
||
| 15 | { |
||
| 16 | // add option JSON_UNESCAPED_UNICODE |
||
| 17 | // 271 === JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_AMP | JSON_HEX_QUOT | JSON_UNESCAPED_UNICODE |
||
| 18 | protected $encodingOptions = 271; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param string $log |
||
| 22 | * @param int $offset |
||
| 23 | * @param bool $is_end |
||
| 24 | * |
||
| 25 | * @return self |
||
| 26 | */ |
||
| 27 | public static function logOffset($log, $offset = 0, $is_end = false) |
||
| 49 | } |
||
| 50 |