function UninterpretedOption::setPositiveIntValue
Generated from protobuf field <code>optional uint64 positive_int_value = 4;</code>
Parameters
int|string $var:
Return value
$this
File
-
vendor/
google/ protobuf/ src/ Google/ Protobuf/ Internal/ UninterpretedOption.php, line 163
Class
- UninterpretedOption
- A message representing a option the parser does not recognize. This only appears in options protos created by the compiler::Parser class. DescriptorPool resolves these when building Descriptor objects. Therefore, options protos in descriptor objects…
Namespace
Google\Protobuf\InternalCode
public function setPositiveIntValue($var) {
GPBUtil::checkUint64($var);
$this->positive_int_value = $var;
return $this;
}