contents .= $content; } /** * Get the buffered data. * * @return string */ public function get() { return $this->contents; } /** * Clean the buffer and throw away any data. * * @return void */ public function clean() { $this->contents = ""; } }