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