/** * Returns the result * * @param text.json.Output $out * @return string */ protected function result($out) { $file = $out->file(); $file->seek(0, SEEK_SET); return $file->read($file->size()); }
/** * Returns the result * * @param text.json.Output $out * @return string */ protected function result($out) { return $out->bytes(); }
/** * Returns the result * * @param text.json.Output $out * @return string */ protected function result($out) { return $out->stream()->getBytes(); }