configFileContents = $configFileContents; } /** * @return string */ public function getConfigFileContents() { return $this->configFileContents; } /** * The filename that the configuration artifact for the `IosApp` is typically * saved as. For example: `GoogleService-Info.plist` * * @param string $configFilename */ public function setConfigFilename($configFilename) { $this->configFilename = $configFilename; } /** * @return string */ public function getConfigFilename() { return $this->configFilename; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(IosAppConfig::class, 'Google_Service_FirebaseManagement_IosAppConfig');