function DescriptorPool::getGeneratedPool
Same name in this branch
- 11.1.x vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorPool.php \Google\Protobuf\Internal\DescriptorPool::getGeneratedPool()
Return value
1 call to DescriptorPool::getGeneratedPool()
- ProtobufSerializer::postProcessJsonEnumValues in vendor/
open-telemetry/ exporter-otlp/ ProtobufSerializer.php - Workaround until protobuf exposes `FormatEnumsAsIntegers` option.
File
-
vendor/
google/ protobuf/ src/ Google/ Protobuf/ DescriptorPool.php, line 21
Class
Namespace
Google\ProtobufCode
public static function getGeneratedPool() {
if (!isset(self::$pool)) {
self::$pool = new DescriptorPool(\Google\Protobuf\Internal\DescriptorPool::getGeneratedPool());
}
return self::$pool;
}