fileContents = $fileContents; } /** * @return string */ public function getFileContents() { return $this->fileContents; } /** * @param string */ public function setFilePath($filePath) { $this->filePath = $filePath; } /** * @return string */ public function getFilePath() { return $this->filePath; } /** * @param string */ public function setFileType($fileType) { $this->fileType = $fileType; } /** * @return string */ public function getFileType() { return $this->fileType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ConfigFile::class, 'Google_Service_ServiceManagement_ConfigFile');