common = $common; } /** * @return CommonLanguageSettings */ public function getCommon() { return $this->common; } /** * The package name to use in Php. Clobbers the php_namespace option set in * the protobuf. This should be used **only** by APIs who have already set the * language_settings.php.package_name" field in gapic.yaml. API teams should * use the protobuf php_namespace option where possible. Example of a YAML * configuration:: publishing: library_settings: php_settings: * library_package: Google\Cloud\PubSub\V1 * * @param string $libraryPackage */ public function setLibraryPackage($libraryPackage) { $this->libraryPackage = $libraryPackage; } /** * @return string */ public function getLibraryPackage() { return $this->libraryPackage; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PhpSettings::class, 'Google_Service_ServiceUsage_PhpSettings');