content = ''; } /** * Gets the content from the wrapped Syslog * * @return string */ public function getContent() { return $this->content; } /** * {@inheritdoc} */ protected function syslogWrapper($level, $entry) { $this->content .= $entry . PHP_EOL; } }