function EnumReservedRange::setStart
Inclusive.
Generated from protobuf field <code>optional int32 start = 1;</code>
Parameters
int $var:
Return value
$this
File
-
vendor/
google/ protobuf/ src/ Google/ Protobuf/ Internal/ EnumDescriptorProto/ EnumReservedRange.php, line 82
Class
- EnumReservedRange
- Range of reserved numeric values. Reserved values may not be used by entries in the same enum. Reserved ranges may not overlap. Note that this is distinct from DescriptorProto.ReservedRange in that it is inclusive such that it can appropriately…
Namespace
Google\Protobuf\Internal\EnumDescriptorProtoCode
public function setStart($var) {
GPBUtil::checkInt32($var);
$this->start = $var;
return $this;
}