content = $content; } public function getContent(): string { return $this->content; } /** * Get cache key of the entity */ public function getKey(): string { return md5($this->content); } /** * Get media type * @return string|null */ public function getMediaType() { return 'text/plain'; } }