fix: phpdoc syntax for repeatedfield parameters (#9784)

pull/9621/head^2
Brent Shaffer 3 years ago committed by GitHub
parent cc8ae4c154
commit 9ba808b798
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      php/src/Google/Protobuf/Api.php
  2. 8
      php/src/Google/Protobuf/Enum.php
  3. 4
      php/src/Google/Protobuf/EnumValue.php
  4. 4
      php/src/Google/Protobuf/Field.php
  5. 4
      php/src/Google/Protobuf/FieldMask.php
  6. 32
      php/src/Google/Protobuf/Internal/DescriptorProto.php
  7. 12
      php/src/Google/Protobuf/Internal/EnumDescriptorProto.php
  8. 4
      php/src/Google/Protobuf/Internal/EnumOptions.php
  9. 4
      php/src/Google/Protobuf/Internal/EnumValueOptions.php
  10. 4
      php/src/Google/Protobuf/Internal/ExtensionRangeOptions.php
  11. 4
      php/src/Google/Protobuf/Internal/FieldOptions.php
  12. 28
      php/src/Google/Protobuf/Internal/FileDescriptorProto.php
  13. 4
      php/src/Google/Protobuf/Internal/FileDescriptorSet.php
  14. 4
      php/src/Google/Protobuf/Internal/FileOptions.php
  15. 4
      php/src/Google/Protobuf/Internal/GeneratedCodeInfo.php
  16. 4
      php/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php
  17. 4
      php/src/Google/Protobuf/Internal/MessageOptions.php
  18. 4
      php/src/Google/Protobuf/Internal/MethodOptions.php
  19. 4
      php/src/Google/Protobuf/Internal/OneofOptions.php
  20. 4
      php/src/Google/Protobuf/Internal/ServiceDescriptorProto.php
  21. 4
      php/src/Google/Protobuf/Internal/ServiceOptions.php
  22. 4
      php/src/Google/Protobuf/Internal/SourceCodeInfo.php
  23. 12
      php/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php
  24. 4
      php/src/Google/Protobuf/Internal/UninterpretedOption.php
  25. 4
      php/src/Google/Protobuf/ListValue.php
  26. 4
      php/src/Google/Protobuf/Method.php
  27. 12
      php/src/Google/Protobuf/Type.php
  28. 16
      php/tests/GeneratedPhpdocTest.php
  29. 4
      src/google/protobuf/compiler/php/php_generator.cc

@ -92,9 +92,9 @@ class Api extends \Google\Protobuf\Internal\Message
* @type string $name * @type string $name
* The fully qualified name of this interface, including package name * The fully qualified name of this interface, including package name
* followed by the interface's simple name. * followed by the interface's simple name.
* @type \Google\Protobuf\Method[]|\Google\Protobuf\Internal\RepeatedField $methods * @type array<\Google\Protobuf\Method>|\Google\Protobuf\Internal\RepeatedField $methods
* The methods of this interface, in unspecified order. * The methods of this interface, in unspecified order.
* @type \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $options * @type array<\Google\Protobuf\Option>|\Google\Protobuf\Internal\RepeatedField $options
* Any metadata attached to the interface. * Any metadata attached to the interface.
* @type string $version * @type string $version
* A version string for this interface. If specified, must have the form * A version string for this interface. If specified, must have the form
@ -117,7 +117,7 @@ class Api extends \Google\Protobuf\Internal\Message
* @type \Google\Protobuf\SourceContext $source_context * @type \Google\Protobuf\SourceContext $source_context
* Source context for the protocol buffer service represented by this * Source context for the protocol buffer service represented by this
* message. * message.
* @type \Google\Protobuf\Mixin[]|\Google\Protobuf\Internal\RepeatedField $mixins * @type array<\Google\Protobuf\Mixin>|\Google\Protobuf\Internal\RepeatedField $mixins
* Included interfaces. See [Mixin][]. * Included interfaces. See [Mixin][].
* @type int $syntax * @type int $syntax
* The source syntax of the service. * The source syntax of the service.
@ -171,7 +171,7 @@ class Api extends \Google\Protobuf\Internal\Message
* The methods of this interface, in unspecified order. * The methods of this interface, in unspecified order.
* *
* Generated from protobuf field <code>repeated .google.protobuf.Method methods = 2;</code> * Generated from protobuf field <code>repeated .google.protobuf.Method methods = 2;</code>
* @param \Google\Protobuf\Method[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Method>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setMethods($var) public function setMethods($var)
@ -197,7 +197,7 @@ class Api extends \Google\Protobuf\Internal\Message
* Any metadata attached to the interface. * Any metadata attached to the interface.
* *
* Generated from protobuf field <code>repeated .google.protobuf.Option options = 3;</code> * Generated from protobuf field <code>repeated .google.protobuf.Option options = 3;</code>
* @param \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Option>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setOptions($var) public function setOptions($var)
@ -319,7 +319,7 @@ class Api extends \Google\Protobuf\Internal\Message
* Included interfaces. See [Mixin][]. * Included interfaces. See [Mixin][].
* *
* Generated from protobuf field <code>repeated .google.protobuf.Mixin mixins = 6;</code> * Generated from protobuf field <code>repeated .google.protobuf.Mixin mixins = 6;</code>
* @param \Google\Protobuf\Mixin[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Mixin>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setMixins($var) public function setMixins($var)

@ -54,9 +54,9 @@ class Enum extends \Google\Protobuf\Internal\Message
* *
* @type string $name * @type string $name
* Enum type name. * Enum type name.
* @type \Google\Protobuf\EnumValue[]|\Google\Protobuf\Internal\RepeatedField $enumvalue * @type array<\Google\Protobuf\EnumValue>|\Google\Protobuf\Internal\RepeatedField $enumvalue
* Enum value definitions. * Enum value definitions.
* @type \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $options * @type array<\Google\Protobuf\Option>|\Google\Protobuf\Internal\RepeatedField $options
* Protocol buffer options. * Protocol buffer options.
* @type \Google\Protobuf\SourceContext $source_context * @type \Google\Protobuf\SourceContext $source_context
* The source context. * The source context.
@ -110,7 +110,7 @@ class Enum extends \Google\Protobuf\Internal\Message
* Enum value definitions. * Enum value definitions.
* *
* Generated from protobuf field <code>repeated .google.protobuf.EnumValue enumvalue = 2;</code> * Generated from protobuf field <code>repeated .google.protobuf.EnumValue enumvalue = 2;</code>
* @param \Google\Protobuf\EnumValue[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\EnumValue>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setEnumvalue($var) public function setEnumvalue($var)
@ -136,7 +136,7 @@ class Enum extends \Google\Protobuf\Internal\Message
* Protocol buffer options. * Protocol buffer options.
* *
* Generated from protobuf field <code>repeated .google.protobuf.Option options = 3;</code> * Generated from protobuf field <code>repeated .google.protobuf.Option options = 3;</code>
* @param \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Option>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setOptions($var) public function setOptions($var)

@ -44,7 +44,7 @@ class EnumValue extends \Google\Protobuf\Internal\Message
* Enum value name. * Enum value name.
* @type int $number * @type int $number
* Enum value number. * Enum value number.
* @type \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $options * @type array<\Google\Protobuf\Option>|\Google\Protobuf\Internal\RepeatedField $options
* Protocol buffer options. * Protocol buffer options.
* } * }
*/ */
@ -120,7 +120,7 @@ class EnumValue extends \Google\Protobuf\Internal\Message
* Protocol buffer options. * Protocol buffer options.
* *
* Generated from protobuf field <code>repeated .google.protobuf.Option options = 3;</code> * Generated from protobuf field <code>repeated .google.protobuf.Option options = 3;</code>
* @param \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Option>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setOptions($var) public function setOptions($var)

@ -100,7 +100,7 @@ class Field extends \Google\Protobuf\Internal\Message
* types. The first type has index 1; zero means the type is not in the list. * types. The first type has index 1; zero means the type is not in the list.
* @type bool $packed * @type bool $packed
* Whether to use alternative packed wire representation. * Whether to use alternative packed wire representation.
* @type \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $options * @type array<\Google\Protobuf\Option>|\Google\Protobuf\Internal\RepeatedField $options
* The protocol buffer options. * The protocol buffer options.
* @type string $json_name * @type string $json_name
* The field JSON name. * The field JSON name.
@ -314,7 +314,7 @@ class Field extends \Google\Protobuf\Internal\Message
* The protocol buffer options. * The protocol buffer options.
* *
* Generated from protobuf field <code>repeated .google.protobuf.Option options = 9;</code> * Generated from protobuf field <code>repeated .google.protobuf.Option options = 9;</code>
* @param \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Option>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setOptions($var) public function setOptions($var)

@ -178,7 +178,7 @@ class FieldMask extends \Google\Protobuf\Internal\Message
* @param array $data { * @param array $data {
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type string[]|\Google\Protobuf\Internal\RepeatedField $paths * @type array<string>|\Google\Protobuf\Internal\RepeatedField $paths
* The set of field mask paths. * The set of field mask paths.
* } * }
*/ */
@ -202,7 +202,7 @@ class FieldMask extends \Google\Protobuf\Internal\Message
* The set of field mask paths. * The set of field mask paths.
* *
* Generated from protobuf field <code>repeated string paths = 1;</code> * Generated from protobuf field <code>repeated string paths = 1;</code>
* @param string[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setPaths($var) public function setPaths($var)

@ -68,15 +68,15 @@ class DescriptorProto extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type string $name * @type string $name
* @type \Google\Protobuf\Internal\FieldDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $field * @type array<\Google\Protobuf\Internal\FieldDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $field
* @type \Google\Protobuf\Internal\FieldDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $extension * @type array<\Google\Protobuf\Internal\FieldDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $extension
* @type \Google\Protobuf\Internal\DescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $nested_type * @type array<\Google\Protobuf\Internal\DescriptorProto>|\Google\Protobuf\Internal\RepeatedField $nested_type
* @type \Google\Protobuf\Internal\EnumDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $enum_type * @type array<\Google\Protobuf\Internal\EnumDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $enum_type
* @type \Google\Protobuf\Internal\DescriptorProto\ExtensionRange[]|\Google\Protobuf\Internal\RepeatedField $extension_range * @type array<\Google\Protobuf\Internal\DescriptorProto\ExtensionRange>|\Google\Protobuf\Internal\RepeatedField $extension_range
* @type \Google\Protobuf\Internal\OneofDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $oneof_decl * @type array<\Google\Protobuf\Internal\OneofDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $oneof_decl
* @type \Google\Protobuf\Internal\MessageOptions $options * @type \Google\Protobuf\Internal\MessageOptions $options
* @type \Google\Protobuf\Internal\DescriptorProto\ReservedRange[]|\Google\Protobuf\Internal\RepeatedField $reserved_range * @type array<\Google\Protobuf\Internal\DescriptorProto\ReservedRange>|\Google\Protobuf\Internal\RepeatedField $reserved_range
* @type string[]|\Google\Protobuf\Internal\RepeatedField $reserved_name * @type array<string>|\Google\Protobuf\Internal\RepeatedField $reserved_name
* Reserved field names, which may not be used by fields in the same message. * Reserved field names, which may not be used by fields in the same message.
* A given name may only be reserved once. * A given name may only be reserved once.
* } * }
@ -129,7 +129,7 @@ class DescriptorProto extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.FieldDescriptorProto field = 2;</code> * Generated from protobuf field <code>repeated .google.protobuf.FieldDescriptorProto field = 2;</code>
* @param \Google\Protobuf\Internal\FieldDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\FieldDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setField($var) public function setField($var)
@ -151,7 +151,7 @@ class DescriptorProto extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.FieldDescriptorProto extension = 6;</code> * Generated from protobuf field <code>repeated .google.protobuf.FieldDescriptorProto extension = 6;</code>
* @param \Google\Protobuf\Internal\FieldDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\FieldDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setExtension($var) public function setExtension($var)
@ -173,7 +173,7 @@ class DescriptorProto extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.DescriptorProto nested_type = 3;</code> * Generated from protobuf field <code>repeated .google.protobuf.DescriptorProto nested_type = 3;</code>
* @param \Google\Protobuf\Internal\DescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\DescriptorProto>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setNestedType($var) public function setNestedType($var)
@ -195,7 +195,7 @@ class DescriptorProto extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 4;</code> * Generated from protobuf field <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 4;</code>
* @param \Google\Protobuf\Internal\EnumDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\EnumDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setEnumType($var) public function setEnumType($var)
@ -217,7 +217,7 @@ class DescriptorProto extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code> * Generated from protobuf field <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code>
* @param \Google\Protobuf\Internal\DescriptorProto\ExtensionRange[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\DescriptorProto\ExtensionRange>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setExtensionRange($var) public function setExtensionRange($var)
@ -239,7 +239,7 @@ class DescriptorProto extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8;</code> * Generated from protobuf field <code>repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8;</code>
* @param \Google\Protobuf\Internal\OneofDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\OneofDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setOneofDecl($var) public function setOneofDecl($var)
@ -293,7 +293,7 @@ class DescriptorProto extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.DescriptorProto.ReservedRange reserved_range = 9;</code> * Generated from protobuf field <code>repeated .google.protobuf.DescriptorProto.ReservedRange reserved_range = 9;</code>
* @param \Google\Protobuf\Internal\DescriptorProto\ReservedRange[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\DescriptorProto\ReservedRange>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setReservedRange($var) public function setReservedRange($var)
@ -321,7 +321,7 @@ class DescriptorProto extends \Google\Protobuf\Internal\Message
* A given name may only be reserved once. * A given name may only be reserved once.
* *
* Generated from protobuf field <code>repeated string reserved_name = 10;</code> * Generated from protobuf field <code>repeated string reserved_name = 10;</code>
* @param string[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setReservedName($var) public function setReservedName($var)

@ -52,13 +52,13 @@ class EnumDescriptorProto extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type string $name * @type string $name
* @type \Google\Protobuf\Internal\EnumValueDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $value * @type array<\Google\Protobuf\Internal\EnumValueDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $value
* @type \Google\Protobuf\Internal\EnumOptions $options * @type \Google\Protobuf\Internal\EnumOptions $options
* @type \Google\Protobuf\Internal\EnumDescriptorProto\EnumReservedRange[]|\Google\Protobuf\Internal\RepeatedField $reserved_range * @type array<\Google\Protobuf\Internal\EnumDescriptorProto\EnumReservedRange>|\Google\Protobuf\Internal\RepeatedField $reserved_range
* Range of reserved numeric values. Reserved numeric values may not be used * Range of reserved numeric values. Reserved numeric values may not be used
* by enum values in the same enum declaration. Reserved ranges may not * by enum values in the same enum declaration. Reserved ranges may not
* overlap. * overlap.
* @type string[]|\Google\Protobuf\Internal\RepeatedField $reserved_name * @type array<string>|\Google\Protobuf\Internal\RepeatedField $reserved_name
* Reserved enum value names, which may not be reused. A given name may only * Reserved enum value names, which may not be reused. A given name may only
* be reserved once. * be reserved once.
* } * }
@ -111,7 +111,7 @@ class EnumDescriptorProto extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.EnumValueDescriptorProto value = 2;</code> * Generated from protobuf field <code>repeated .google.protobuf.EnumValueDescriptorProto value = 2;</code>
* @param \Google\Protobuf\Internal\EnumValueDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\EnumValueDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setValue($var) public function setValue($var)
@ -173,7 +173,7 @@ class EnumDescriptorProto extends \Google\Protobuf\Internal\Message
* overlap. * overlap.
* *
* Generated from protobuf field <code>repeated .google.protobuf.EnumDescriptorProto.EnumReservedRange reserved_range = 4;</code> * Generated from protobuf field <code>repeated .google.protobuf.EnumDescriptorProto.EnumReservedRange reserved_range = 4;</code>
* @param \Google\Protobuf\Internal\EnumDescriptorProto\EnumReservedRange[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\EnumDescriptorProto\EnumReservedRange>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setReservedRange($var) public function setReservedRange($var)
@ -201,7 +201,7 @@ class EnumDescriptorProto extends \Google\Protobuf\Internal\Message
* be reserved once. * be reserved once.
* *
* Generated from protobuf field <code>repeated string reserved_name = 5;</code> * Generated from protobuf field <code>repeated string reserved_name = 5;</code>
* @param string[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setReservedName($var) public function setReservedName($var)

@ -52,7 +52,7 @@ class EnumOptions extends \Google\Protobuf\Internal\Message
* Depending on the target platform, this can emit Deprecated annotations * Depending on the target platform, this can emit Deprecated annotations
* for the enum, or it will be completely ignored; in the very least, this * for the enum, or it will be completely ignored; in the very least, this
* is a formalization for deprecating enums. * is a formalization for deprecating enums.
* @type \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option * @type array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* } * }
*/ */
@ -156,7 +156,7 @@ class EnumOptions extends \Google\Protobuf\Internal\Message
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* *
* Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code> * Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code>
* @param \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setUninterpretedOption($var) public function setUninterpretedOption($var)

@ -42,7 +42,7 @@ class EnumValueOptions extends \Google\Protobuf\Internal\Message
* Depending on the target platform, this can emit Deprecated annotations * Depending on the target platform, this can emit Deprecated annotations
* for the enum value, or it will be completely ignored; in the very least, * for the enum value, or it will be completely ignored; in the very least,
* this is a formalization for deprecating enum values. * this is a formalization for deprecating enum values.
* @type \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option * @type array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* } * }
*/ */
@ -108,7 +108,7 @@ class EnumValueOptions extends \Google\Protobuf\Internal\Message
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* *
* Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code> * Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code>
* @param \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setUninterpretedOption($var) public function setUninterpretedOption($var)

@ -28,7 +28,7 @@ class ExtensionRangeOptions extends \Google\Protobuf\Internal\Message
* @param array $data { * @param array $data {
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option * @type array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* } * }
*/ */
@ -52,7 +52,7 @@ class ExtensionRangeOptions extends \Google\Protobuf\Internal\Message
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* *
* Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code> * Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code>
* @param \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setUninterpretedOption($var) public function setUninterpretedOption($var)

@ -180,7 +180,7 @@ class FieldOptions extends \Google\Protobuf\Internal\Message
* is a formalization for deprecating fields. * is a formalization for deprecating fields.
* @type bool $weak * @type bool $weak
* For Google-internal migration only. Do not use. * For Google-internal migration only. Do not use.
* @type \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option * @type array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* } * }
*/ */
@ -552,7 +552,7 @@ class FieldOptions extends \Google\Protobuf\Internal\Message
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* *
* Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code> * Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code>
* @param \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setUninterpretedOption($var) public function setUninterpretedOption($var)

@ -97,18 +97,18 @@ class FileDescriptorProto extends \Google\Protobuf\Internal\Message
* file name, relative to root of source tree * file name, relative to root of source tree
* @type string $package * @type string $package
* e.g. "foo", "foo.bar", etc. * e.g. "foo", "foo.bar", etc.
* @type string[]|\Google\Protobuf\Internal\RepeatedField $dependency * @type array<string>|\Google\Protobuf\Internal\RepeatedField $dependency
* Names of files imported by this file. * Names of files imported by this file.
* @type int[]|\Google\Protobuf\Internal\RepeatedField $public_dependency * @type array<int>|\Google\Protobuf\Internal\RepeatedField $public_dependency
* Indexes of the public imported files in the dependency list above. * Indexes of the public imported files in the dependency list above.
* @type int[]|\Google\Protobuf\Internal\RepeatedField $weak_dependency * @type array<int>|\Google\Protobuf\Internal\RepeatedField $weak_dependency
* Indexes of the weak imported files in the dependency list. * Indexes of the weak imported files in the dependency list.
* For Google-internal migration only. Do not use. * For Google-internal migration only. Do not use.
* @type \Google\Protobuf\Internal\DescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $message_type * @type array<\Google\Protobuf\Internal\DescriptorProto>|\Google\Protobuf\Internal\RepeatedField $message_type
* All top-level definitions in this file. * All top-level definitions in this file.
* @type \Google\Protobuf\Internal\EnumDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $enum_type * @type array<\Google\Protobuf\Internal\EnumDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $enum_type
* @type \Google\Protobuf\Internal\ServiceDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $service * @type array<\Google\Protobuf\Internal\ServiceDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $service
* @type \Google\Protobuf\Internal\FieldDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $extension * @type array<\Google\Protobuf\Internal\FieldDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $extension
* @type \Google\Protobuf\Internal\FileOptions $options * @type \Google\Protobuf\Internal\FileOptions $options
* @type \Google\Protobuf\Internal\SourceCodeInfo $source_code_info * @type \Google\Protobuf\Internal\SourceCodeInfo $source_code_info
* This field contains optional information about the original source code. * This field contains optional information about the original source code.
@ -212,7 +212,7 @@ class FileDescriptorProto extends \Google\Protobuf\Internal\Message
* Names of files imported by this file. * Names of files imported by this file.
* *
* Generated from protobuf field <code>repeated string dependency = 3;</code> * Generated from protobuf field <code>repeated string dependency = 3;</code>
* @param string[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setDependency($var) public function setDependency($var)
@ -238,7 +238,7 @@ class FileDescriptorProto extends \Google\Protobuf\Internal\Message
* Indexes of the public imported files in the dependency list above. * Indexes of the public imported files in the dependency list above.
* *
* Generated from protobuf field <code>repeated int32 public_dependency = 10;</code> * Generated from protobuf field <code>repeated int32 public_dependency = 10;</code>
* @param int[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<int>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setPublicDependency($var) public function setPublicDependency($var)
@ -266,7 +266,7 @@ class FileDescriptorProto extends \Google\Protobuf\Internal\Message
* For Google-internal migration only. Do not use. * For Google-internal migration only. Do not use.
* *
* Generated from protobuf field <code>repeated int32 weak_dependency = 11;</code> * Generated from protobuf field <code>repeated int32 weak_dependency = 11;</code>
* @param int[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<int>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setWeakDependency($var) public function setWeakDependency($var)
@ -292,7 +292,7 @@ class FileDescriptorProto extends \Google\Protobuf\Internal\Message
* All top-level definitions in this file. * All top-level definitions in this file.
* *
* Generated from protobuf field <code>repeated .google.protobuf.DescriptorProto message_type = 4;</code> * Generated from protobuf field <code>repeated .google.protobuf.DescriptorProto message_type = 4;</code>
* @param \Google\Protobuf\Internal\DescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\DescriptorProto>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setMessageType($var) public function setMessageType($var)
@ -314,7 +314,7 @@ class FileDescriptorProto extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 5;</code> * Generated from protobuf field <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 5;</code>
* @param \Google\Protobuf\Internal\EnumDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\EnumDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setEnumType($var) public function setEnumType($var)
@ -336,7 +336,7 @@ class FileDescriptorProto extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.ServiceDescriptorProto service = 6;</code> * Generated from protobuf field <code>repeated .google.protobuf.ServiceDescriptorProto service = 6;</code>
* @param \Google\Protobuf\Internal\ServiceDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\ServiceDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setService($var) public function setService($var)
@ -358,7 +358,7 @@ class FileDescriptorProto extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.FieldDescriptorProto extension = 7;</code> * Generated from protobuf field <code>repeated .google.protobuf.FieldDescriptorProto extension = 7;</code>
* @param \Google\Protobuf\Internal\FieldDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\FieldDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setExtension($var) public function setExtension($var)

@ -29,7 +29,7 @@ class FileDescriptorSet extends \Google\Protobuf\Internal\Message
* @param array $data { * @param array $data {
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type \Google\Protobuf\Internal\FileDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $file * @type array<\Google\Protobuf\Internal\FileDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $file
* } * }
*/ */
public function __construct($data = NULL) { public function __construct($data = NULL) {
@ -48,7 +48,7 @@ class FileDescriptorSet extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.FileDescriptorProto file = 1;</code> * Generated from protobuf field <code>repeated .google.protobuf.FileDescriptorProto file = 1;</code>
* @param \Google\Protobuf\Internal\FileDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\FileDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setFile($var) public function setFile($var)

@ -266,7 +266,7 @@ class FileOptions extends \Google\Protobuf\Internal\Message
* Use this option to change the package of ruby generated classes. Default * Use this option to change the package of ruby generated classes. Default
* is empty. When this option is not set, the package name will be used for * is empty. When this option is not set, the package name will be used for
* determining the ruby package. * determining the ruby package.
* @type \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option * @type array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option
* The parser stores options it doesn't recognize here. * The parser stores options it doesn't recognize here.
* See the documentation for the "Options" section above. * See the documentation for the "Options" section above.
* } * }
@ -1091,7 +1091,7 @@ class FileOptions extends \Google\Protobuf\Internal\Message
* See the documentation for the "Options" section above. * See the documentation for the "Options" section above.
* *
* Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code> * Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code>
* @param \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setUninterpretedOption($var) public function setUninterpretedOption($var)

@ -33,7 +33,7 @@ class GeneratedCodeInfo extends \Google\Protobuf\Internal\Message
* @param array $data { * @param array $data {
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type \Google\Protobuf\Internal\GeneratedCodeInfo\Annotation[]|\Google\Protobuf\Internal\RepeatedField $annotation * @type array<\Google\Protobuf\Internal\GeneratedCodeInfo\Annotation>|\Google\Protobuf\Internal\RepeatedField $annotation
* An Annotation connects some span of text in generated code to an element * An Annotation connects some span of text in generated code to an element
* of its generating .proto file. * of its generating .proto file.
* } * }
@ -60,7 +60,7 @@ class GeneratedCodeInfo extends \Google\Protobuf\Internal\Message
* of its generating .proto file. * of its generating .proto file.
* *
* Generated from protobuf field <code>repeated .google.protobuf.GeneratedCodeInfo.Annotation annotation = 1;</code> * Generated from protobuf field <code>repeated .google.protobuf.GeneratedCodeInfo.Annotation annotation = 1;</code>
* @param \Google\Protobuf\Internal\GeneratedCodeInfo\Annotation[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\GeneratedCodeInfo\Annotation>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setAnnotation($var) public function setAnnotation($var)

@ -50,7 +50,7 @@ class Annotation extends \Google\Protobuf\Internal\Message
* @param array $data { * @param array $data {
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type int[]|\Google\Protobuf\Internal\RepeatedField $path * @type array<int>|\Google\Protobuf\Internal\RepeatedField $path
* Identifies the element in the original source .proto file. This field * Identifies the element in the original source .proto file. This field
* is formatted the same as SourceCodeInfo.Location.path. * is formatted the same as SourceCodeInfo.Location.path.
* @type string $source_file * @type string $source_file
@ -86,7 +86,7 @@ class Annotation extends \Google\Protobuf\Internal\Message
* is formatted the same as SourceCodeInfo.Location.path. * is formatted the same as SourceCodeInfo.Location.path.
* *
* Generated from protobuf field <code>repeated int32 path = 1 [packed = true];</code> * Generated from protobuf field <code>repeated int32 path = 1 [packed = true];</code>
* @param int[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<int>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setPath($var) public function setPath($var)

@ -132,7 +132,7 @@ class MessageOptions extends \Google\Protobuf\Internal\Message
* NOTE: Do not set the option in .proto files. Always use the maps syntax * NOTE: Do not set the option in .proto files. Always use the maps syntax
* instead. The option should only be implicitly set by the proto compiler * instead. The option should only be implicitly set by the proto compiler
* parser. * parser.
* @type \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option * @type array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* } * }
*/ */
@ -372,7 +372,7 @@ class MessageOptions extends \Google\Protobuf\Internal\Message
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* *
* Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code> * Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code>
* @param \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setUninterpretedOption($var) public function setUninterpretedOption($var)

@ -47,7 +47,7 @@ class MethodOptions extends \Google\Protobuf\Internal\Message
* for the method, or it will be completely ignored; in the very least, * for the method, or it will be completely ignored; in the very least,
* this is a formalization for deprecating methods. * this is a formalization for deprecating methods.
* @type int $idempotency_level * @type int $idempotency_level
* @type \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option * @type array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* } * }
*/ */
@ -145,7 +145,7 @@ class MethodOptions extends \Google\Protobuf\Internal\Message
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* *
* Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code> * Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code>
* @param \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setUninterpretedOption($var) public function setUninterpretedOption($var)

@ -28,7 +28,7 @@ class OneofOptions extends \Google\Protobuf\Internal\Message
* @param array $data { * @param array $data {
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option * @type array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* } * }
*/ */
@ -52,7 +52,7 @@ class OneofOptions extends \Google\Protobuf\Internal\Message
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* *
* Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code> * Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code>
* @param \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setUninterpretedOption($var) public function setUninterpretedOption($var)

@ -37,7 +37,7 @@ class ServiceDescriptorProto extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type string $name * @type string $name
* @type \Google\Protobuf\Internal\MethodDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $method * @type array<\Google\Protobuf\Internal\MethodDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $method
* @type \Google\Protobuf\Internal\ServiceOptions $options * @type \Google\Protobuf\Internal\ServiceOptions $options
* } * }
*/ */
@ -89,7 +89,7 @@ class ServiceDescriptorProto extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code> * Generated from protobuf field <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code>
* @param \Google\Protobuf\Internal\MethodDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\MethodDescriptorProto>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setMethod($var) public function setMethod($var)

@ -42,7 +42,7 @@ class ServiceOptions extends \Google\Protobuf\Internal\Message
* Depending on the target platform, this can emit Deprecated annotations * Depending on the target platform, this can emit Deprecated annotations
* for the service, or it will be completely ignored; in the very least, * for the service, or it will be completely ignored; in the very least,
* this is a formalization for deprecating services. * this is a formalization for deprecating services.
* @type \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option * @type array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* } * }
*/ */
@ -108,7 +108,7 @@ class ServiceOptions extends \Google\Protobuf\Internal\Message
* The parser stores options it doesn't recognize here. See above. * The parser stores options it doesn't recognize here. See above.
* *
* Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code> * Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code>
* @param \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\UninterpretedOption>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setUninterpretedOption($var) public function setUninterpretedOption($var)

@ -71,7 +71,7 @@ class SourceCodeInfo extends \Google\Protobuf\Internal\Message
* @param array $data { * @param array $data {
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type \Google\Protobuf\Internal\SourceCodeInfo\Location[]|\Google\Protobuf\Internal\RepeatedField $location * @type array<\Google\Protobuf\Internal\SourceCodeInfo\Location>|\Google\Protobuf\Internal\RepeatedField $location
* A Location identifies a piece of source code in a .proto file which * A Location identifies a piece of source code in a .proto file which
* corresponds to a particular definition. This information is intended * corresponds to a particular definition. This information is intended
* to be useful to IDEs, code indexers, documentation generators, and similar * to be useful to IDEs, code indexers, documentation generators, and similar
@ -215,7 +215,7 @@ class SourceCodeInfo extends \Google\Protobuf\Internal\Message
* be recorded in the future. * be recorded in the future.
* *
* Generated from protobuf field <code>repeated .google.protobuf.SourceCodeInfo.Location location = 1;</code> * Generated from protobuf field <code>repeated .google.protobuf.SourceCodeInfo.Location location = 1;</code>
* @param \Google\Protobuf\Internal\SourceCodeInfo\Location[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\SourceCodeInfo\Location>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setLocation($var) public function setLocation($var)

@ -107,7 +107,7 @@ class Location extends \Google\Protobuf\Internal\Message
* @param array $data { * @param array $data {
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type int[]|\Google\Protobuf\Internal\RepeatedField $path * @type array<int>|\Google\Protobuf\Internal\RepeatedField $path
* Identifies which part of the FileDescriptorProto was defined at this * Identifies which part of the FileDescriptorProto was defined at this
* location. * location.
* Each element is a field number or an index. They form a path from * Each element is a field number or an index. They form a path from
@ -129,7 +129,7 @@ class Location extends \Google\Protobuf\Internal\Message
* [ 4, 3, 2, 7 ] * [ 4, 3, 2, 7 ]
* this path refers to the whole field declaration (from the beginning * this path refers to the whole field declaration (from the beginning
* of the label to the terminating semicolon). * of the label to the terminating semicolon).
* @type int[]|\Google\Protobuf\Internal\RepeatedField $span * @type array<int>|\Google\Protobuf\Internal\RepeatedField $span
* Always has exactly three or four elements: start line, start column, * Always has exactly three or four elements: start line, start column,
* end line (optional, otherwise assumed same as start line), end column. * end line (optional, otherwise assumed same as start line), end column.
* These are packed into a single field for efficiency. Note that line * These are packed into a single field for efficiency. Note that line
@ -173,7 +173,7 @@ class Location extends \Google\Protobuf\Internal\Message
* optional int32 grault = 6; * optional int32 grault = 6;
* // ignored detached comments. * // ignored detached comments.
* @type string $trailing_comments * @type string $trailing_comments
* @type string[]|\Google\Protobuf\Internal\RepeatedField $leading_detached_comments * @type array<string>|\Google\Protobuf\Internal\RepeatedField $leading_detached_comments
* } * }
*/ */
public function __construct($data = NULL) { public function __construct($data = NULL) {
@ -236,7 +236,7 @@ class Location extends \Google\Protobuf\Internal\Message
* of the label to the terminating semicolon). * of the label to the terminating semicolon).
* *
* Generated from protobuf field <code>repeated int32 path = 1 [packed = true];</code> * Generated from protobuf field <code>repeated int32 path = 1 [packed = true];</code>
* @param int[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<int>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setPath($var) public function setPath($var)
@ -270,7 +270,7 @@ class Location extends \Google\Protobuf\Internal\Message
* 1 to each before displaying to a user. * 1 to each before displaying to a user.
* *
* Generated from protobuf field <code>repeated int32 span = 2 [packed = true];</code> * Generated from protobuf field <code>repeated int32 span = 2 [packed = true];</code>
* @param int[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<int>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setSpan($var) public function setSpan($var)
@ -430,7 +430,7 @@ class Location extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated string leading_detached_comments = 6;</code> * Generated from protobuf field <code>repeated string leading_detached_comments = 6;</code>
* @param string[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setLeadingDetachedComments($var) public function setLeadingDetachedComments($var)

@ -60,7 +60,7 @@ class UninterpretedOption extends \Google\Protobuf\Internal\Message
* @param array $data { * @param array $data {
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type \Google\Protobuf\Internal\UninterpretedOption\NamePart[]|\Google\Protobuf\Internal\RepeatedField $name * @type array<\Google\Protobuf\Internal\UninterpretedOption\NamePart>|\Google\Protobuf\Internal\RepeatedField $name
* @type string $identifier_value * @type string $identifier_value
* The value of the uninterpreted option, in whatever type the tokenizer * The value of the uninterpreted option, in whatever type the tokenizer
* identified it as during parsing. Exactly one of these should be set. * identified it as during parsing. Exactly one of these should be set.
@ -87,7 +87,7 @@ class UninterpretedOption extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code> * Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code>
* @param \Google\Protobuf\Internal\UninterpretedOption\NamePart[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Internal\UninterpretedOption\NamePart>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setName($var) public function setName($var)

@ -29,7 +29,7 @@ class ListValue extends \Google\Protobuf\Internal\Message
* @param array $data { * @param array $data {
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type \Google\Protobuf\Value[]|\Google\Protobuf\Internal\RepeatedField $values * @type array<\Google\Protobuf\Value>|\Google\Protobuf\Internal\RepeatedField $values
* Repeated field of dynamically typed values. * Repeated field of dynamically typed values.
* } * }
*/ */
@ -53,7 +53,7 @@ class ListValue extends \Google\Protobuf\Internal\Message
* Repeated field of dynamically typed values. * Repeated field of dynamically typed values.
* *
* Generated from protobuf field <code>repeated .google.protobuf.Value values = 1;</code> * Generated from protobuf field <code>repeated .google.protobuf.Value values = 1;</code>
* @param \Google\Protobuf\Value[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Value>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setValues($var) public function setValues($var)

@ -74,7 +74,7 @@ class Method extends \Google\Protobuf\Internal\Message
* The URL of the output message type. * The URL of the output message type.
* @type bool $response_streaming * @type bool $response_streaming
* If true, the response is streamed. * If true, the response is streamed.
* @type \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $options * @type array<\Google\Protobuf\Option>|\Google\Protobuf\Internal\RepeatedField $options
* Any metadata attached to the method. * Any metadata attached to the method.
* @type int $syntax * @type int $syntax
* The source syntax of this method. * The source syntax of this method.
@ -230,7 +230,7 @@ class Method extends \Google\Protobuf\Internal\Message
* Any metadata attached to the method. * Any metadata attached to the method.
* *
* Generated from protobuf field <code>repeated .google.protobuf.Option options = 6;</code> * Generated from protobuf field <code>repeated .google.protobuf.Option options = 6;</code>
* @param \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Option>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setOptions($var) public function setOptions($var)

@ -60,11 +60,11 @@ class Type extends \Google\Protobuf\Internal\Message
* *
* @type string $name * @type string $name
* The fully qualified message name. * The fully qualified message name.
* @type \Google\Protobuf\Field[]|\Google\Protobuf\Internal\RepeatedField $fields * @type array<\Google\Protobuf\Field>|\Google\Protobuf\Internal\RepeatedField $fields
* The list of fields. * The list of fields.
* @type string[]|\Google\Protobuf\Internal\RepeatedField $oneofs * @type array<string>|\Google\Protobuf\Internal\RepeatedField $oneofs
* The list of types appearing in `oneof` definitions in this type. * The list of types appearing in `oneof` definitions in this type.
* @type \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $options * @type array<\Google\Protobuf\Option>|\Google\Protobuf\Internal\RepeatedField $options
* The protocol buffer options. * The protocol buffer options.
* @type \Google\Protobuf\SourceContext $source_context * @type \Google\Protobuf\SourceContext $source_context
* The source context. * The source context.
@ -118,7 +118,7 @@ class Type extends \Google\Protobuf\Internal\Message
* The list of fields. * The list of fields.
* *
* Generated from protobuf field <code>repeated .google.protobuf.Field fields = 2;</code> * Generated from protobuf field <code>repeated .google.protobuf.Field fields = 2;</code>
* @param \Google\Protobuf\Field[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Field>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setFields($var) public function setFields($var)
@ -144,7 +144,7 @@ class Type extends \Google\Protobuf\Internal\Message
* The list of types appearing in `oneof` definitions in this type. * The list of types appearing in `oneof` definitions in this type.
* *
* Generated from protobuf field <code>repeated string oneofs = 3;</code> * Generated from protobuf field <code>repeated string oneofs = 3;</code>
* @param string[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setOneofs($var) public function setOneofs($var)
@ -170,7 +170,7 @@ class Type extends \Google\Protobuf\Internal\Message
* The protocol buffer options. * The protocol buffer options.
* *
* Generated from protobuf field <code>repeated .google.protobuf.Option options = 4;</code> * Generated from protobuf field <code>repeated .google.protobuf.Option options = 4;</code>
* @param \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $var * @param array<\Google\Protobuf\Option>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setOptions($var) public function setOptions($var)

@ -163,7 +163,7 @@ class GeneratedPhpdocTest extends TestBase
'setRepeatedEnum', 'setRepeatedEnum',
'setRepeatedNoNamespaceEnum', 'setRepeatedNoNamespaceEnum',
], ],
'@param int[]|\Google\Protobuf\Internal\RepeatedField $var' '@param array<int>|\Google\Protobuf\Internal\RepeatedField $var'
], ],
[ [
[ [
@ -173,45 +173,45 @@ class GeneratedPhpdocTest extends TestBase
'setRepeatedFixed64', 'setRepeatedFixed64',
'setRepeatedSfixed64', 'setRepeatedSfixed64',
], ],
'@param int[]|string[]|\Google\Protobuf\Internal\RepeatedField $var' '@param array<int>|array<string>|\Google\Protobuf\Internal\RepeatedField $var'
], ],
[ [
[ [
'setRepeatedFloat', 'setRepeatedFloat',
'setRepeatedDouble', 'setRepeatedDouble',
], ],
'@param float[]|\Google\Protobuf\Internal\RepeatedField $var' '@param array<float>|\Google\Protobuf\Internal\RepeatedField $var'
], ],
[ [
[ [
'setRepeatedBool', 'setRepeatedBool',
], ],
'@param bool[]|\Google\Protobuf\Internal\RepeatedField $var' '@param array<bool>|\Google\Protobuf\Internal\RepeatedField $var'
], ],
[ [
[ [
'setRepeatedString', 'setRepeatedString',
'setRepeatedBytes', 'setRepeatedBytes',
], ],
'@param string[]|\Google\Protobuf\Internal\RepeatedField $var' '@param array<string>|\Google\Protobuf\Internal\RepeatedField $var'
], ],
[ [
[ [
'setRepeatedMessage', 'setRepeatedMessage',
], ],
'@param \Foo\TestMessage\Sub[]|\Google\Protobuf\Internal\RepeatedField $var' '@param array<\Foo\TestMessage\Sub>|\Google\Protobuf\Internal\RepeatedField $var'
], ],
[ [
[ [
'setRepeatedRecursive', 'setRepeatedRecursive',
], ],
'@param \Foo\TestMessage[]|\Google\Protobuf\Internal\RepeatedField $var' '@param array<\Foo\TestMessage>|\Google\Protobuf\Internal\RepeatedField $var'
], ],
[ [
[ [
'setRepeatedNoNamespaceMessage', 'setRepeatedNoNamespaceMessage',
], ],
'@param \NoNamespaceMessage[]|\Google\Protobuf\Internal\RepeatedField $var' '@param array<\NoNamespaceMessage>|\Google\Protobuf\Internal\RepeatedField $var'
], ],
[ [
[ [

@ -500,9 +500,9 @@ std::string PhpSetterTypeName(const FieldDescriptor* field,
// accommodate for edge case with multiple types. // accommodate for edge case with multiple types.
size_t start_pos = type.find("|"); size_t start_pos = type.find("|");
if (start_pos != std::string::npos) { if (start_pos != std::string::npos) {
type.replace(start_pos, 1, "[]|"); type.replace(start_pos, 1, ">|array<");
} }
type += "[]|\\Google\\Protobuf\\Internal\\RepeatedField"; type = "array<" + type + ">|\\Google\\Protobuf\\Internal\\RepeatedField";
} }
return type; return type;
} }

Loading…
Cancel
Save