contents = $contents; $this->filename = $filename; } /** * Return the filename for HTTP validation * @return string */ public function getFilename(): string { return $this->filename; } /** * Return the file contents for HTTP validation * @return string */ public function getContents(): string { return $this->contents; } }