function Mixin::setName
The fully qualified name of the interface which is included.
Generated from protobuf field <code>string name = 1;</code>
Parameters
string $var:
Return value
$this
File
-
vendor/
google/ protobuf/ src/ Google/ Protobuf/ Mixin.php, line 129
Class
- Mixin
- Declares an API Interface to be included in this interface. The including interface must redeclare all the methods from the included interface, but documentation and options are inherited as follows:
Namespace
Google\ProtobufCode
public function setName($var) {
GPBUtil::checkString($var, True);
$this->name = $var;
return $this;
}